Back to project page Polaris.
The source code is released under:
Apache License
If you think the Android project Polaris listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2012 Cyril Mottier (http://www.cyrilmottier.com) */*from ww w .ja v a 2 s . c o m*/ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.cyrilmottier.polaris; import android.graphics.drawable.Drawable; import com.google.android.maps.GeoPoint; import com.google.android.maps.OverlayItem; /** * The basic component to use in order to easily annotate a * {@link PolarisMapView}. * * @author Cyril Mottier */ public class Annotation extends OverlayItem { /** * Construct an {@link Annotation}. * * @param point Position of the annotation. * @param title Title text for this annotation */ public Annotation(GeoPoint point, String title) { this(point, title, null, null); } /** * Construct an {@link Annotation}. * * @param point Position of the annotation. * @param title Title text for this annotation * @param snippet Snippet text for this annotation */ public Annotation(GeoPoint point, String title, String snippet) { this(point, title, snippet, null); } /** * Construct an {@link Annotation}. * * @param point Position of the annotation. * @param title Title text for this annotation * @param snippet Snippet text for this annotation * @param marker Drawable used as this {@link Annotation}'s marker (please * note this marker must have its bounds already set. You can use * the {@link MapViewUtils#boundMarker(Drawable, int)} utility * method to prepare this {@link Drawable}'s bounds) */ public Annotation(GeoPoint point, String title, String snippet, Drawable marker) { super(point, title, snippet); mMarker = marker; } /** * Return the Drawable use as this {@link Annotation}'s marker or null if * none have been set. * * @return The marker {@link Drawable} */ public Drawable getMarker() { return mMarker; } }