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 aGeoPath
object.
-
-
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 void
addGeoPolyline(GeoPath path)
AddGeoPath
object into list.int
getGeoType()
Returns the map object type.java.util.List<GeoPath>
getPolylines()
Return all the path objects.GeoDataOutput
serialize(GeoDataSerializer serializer)
UseGeoDataSerializer
visitor 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)
AddGeoPath
object into list.- Parameters:
path
- aGeoPath
object
-
getPolylines
public java.util.List<GeoPath> getPolylines()
Return all the path objects.- Returns:
- List of
GeoPath
objects.
-
serialize
public GeoDataOutput serialize(GeoDataSerializer serializer)
Description copied from interface:GeoData
UseGeoDataSerializer
visitor to parse and serialize the data content.- 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.- Returns:
- a
EnumMapFeatures
map object type.
-
-