Package com.microstrategy.web.app.maps
Class MultiGeoPolyline
- java.lang.Object
-
- com.microstrategy.web.app.maps.MultiGeoData<GeoPath>
-
- com.microstrategy.web.app.maps.MultiGeoPolyline
-
- All Implemented Interfaces:
GeoData
public class MultiGeoPolyline extends MultiGeoData<GeoPath>
A MultiGeoPolyline can contain multiple paths. Each path is aGeoPathobject.
-
-
Field Summary
-
Fields inherited from class com.microstrategy.web.app.maps.MultiGeoData
objectList
-
-
Constructor Summary
Constructors Constructor Description MultiGeoPolyline()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddGeoPolyline(GeoPath path)AddGeoPathobject into list.intgetGeoType()Returns the map object type.java.util.List<GeoPath>getPolylines()Return all the path objects.GeoDataOutputserialize(GeoDataSerializer serializer)UseGeoDataSerializervisitor to parse and serialize the data content.-
Methods inherited from class com.microstrategy.web.app.maps.MultiGeoData
add, getGeoData, size
-
-
-
-
Method Detail
-
addGeoPolyline
public void addGeoPolyline(GeoPath path)
AddGeoPathobject into list.- Parameters:
path- aGeoPathobject
-
getPolylines
public java.util.List<GeoPath> getPolylines()
Return all the path objects.- Returns:
- List of
GeoPathobjects.
-
serialize
public GeoDataOutput serialize(GeoDataSerializer serializer)
Description copied from interface:GeoDataUseGeoDataSerializervisitor to parse and serialize the data content.- Parameters:
serializer- aGeoDataSerializerobject.- Returns:
- a formatted string represents the geo data content.
-
getGeoType
public int getGeoType()
Description copied from interface:GeoDataReturns the map object type. The value of the object type is fromEnumMapFeaturesmap object types.- Returns:
- a
EnumMapFeaturesmap object type.
-
-