public class GoogleMapMarker
extends java.lang.Object
Copyright 2009 Partner Software, Inc.
| Constructor and Description |
|---|
GoogleMapMarker()
Empty constructor
|
GoogleMapMarker(double longitude,
double latitude,
java.lang.String iconName,
java.lang.String htmlData)
Creates a new GoogleMapMarker object.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getHtmlData() |
java.lang.String |
getIconName()
Returns the name of the style to use for this marker,
not the icon's url.
|
double |
getLatitude() |
double |
getLongitude() |
void |
setHtmlData(java.lang.String htmlData) |
void |
setIconName(java.lang.String iconName)
Sets the name of the style to use for this namer,
not the icon's url.
|
void |
setLatitude(double latitude) |
void |
setLongitude(double longitude) |
public GoogleMapMarker()
public GoogleMapMarker(double longitude,
double latitude,
java.lang.String iconName,
java.lang.String htmlData)
longitude - - longitude for itemlatitude - - latitude for itemiconName - - The name of the style to draw this marker with. (Not the url)htmlData - - html data associated with marker (pop-up window)public double getLongitude()
public void setLongitude(double longitude)
longitude - the longitude to setpublic double getLatitude()
public void setLatitude(double latitude)
latitude - the latitude to setpublic java.lang.String getIconName()
public void setIconName(java.lang.String iconName)
iconName - the iconName to setpublic java.lang.String getHtmlData()
public void setHtmlData(java.lang.String htmlData)
htmlData - the htmlData to set