Package com.microstrategy.web.app.maps
Interface GeoData
-
- All Known Implementing Classes:
ComboGeoData
,GeoPath
,GeoPoint
,GeoPolygon
,MultiGeoData
,MultiGeoPolygon
,MultiGeoPolyline
public interface GeoData
GeoData interface. The interface is designed to interact withGeoDataSerializer
to get formatted geo data string.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getGeoType()
Returns the map object type.GeoDataOutput
serialize(GeoDataSerializer serializer)
UseGeoDataSerializer
visitor to parse and serialize the data content.
-
-
-
Method Detail
-
serialize
GeoDataOutput serialize(GeoDataSerializer serializer)
UseGeoDataSerializer
visitor to parse and serialize the data content.- Parameters:
serializer
- aGeoDataSerializer
object.- Returns:
- a formatted string represents the geo data content.
-
getGeoType
int getGeoType()
Returns the map object type. The value of the object type is fromEnumMapFeatures
map object types.- Returns:
- a
EnumMapFeatures
map object type.
-
-