Package com.microstrategy.web.app.maps
Class GeoPoint
- java.lang.Object
-
- com.microstrategy.web.app.maps.GeoPoint
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getGeoType()
Returns the map object type.LatLng
getPoint()
GeoDataOutput
serialize(GeoDataSerializer serializer)
UseGeoDataSerializer
visitor to parse and serialize the data content.void
setPoint(LatLng latLng)
-
-
-
Field Detail
-
point
protected LatLng point
-
-
Constructor Detail
-
GeoPoint
public GeoPoint()
-
GeoPoint
public GeoPoint(LatLng latLng)
-
-
Method Detail
-
setPoint
public void setPoint(LatLng latLng)
-
getPoint
public LatLng getPoint()
-
serialize
public GeoDataOutput serialize(GeoDataSerializer serializer)
Description copied from interface:GeoData
UseGeoDataSerializer
visitor to parse and serialize the data content.- Specified by:
serialize
in interfaceGeoData
- Parameters:
serializer
- aGeoDataSerializer
object.- Returns:
- a formatted string represents the geo data content.
-
getGeoType
public int getGeoType()
Description copied from interface:GeoData
Returns the map object type. The value of the object type is fromEnumMapFeatures
map object types.- Specified by:
getGeoType
in interfaceGeoData
- Returns:
- a
EnumMapFeatures
map object type.
-
-