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