public interface Polyline
Modifier and Type | Method and Description |
---|---|
java.util.List<GeoPoint> |
getCoordinates() |
java.lang.String |
getStrokeColor() |
double |
getStrokeOpacity() |
int |
getStrokeWeight() |
int |
getzIndex() |
boolean |
isGeodesic() |
void |
setCoordinates(java.util.List<GeoPoint> coordinates)
Sets polyline vertices coordinates
|
void |
setGeodesic(boolean geodesic)
Sets whether polyline lines should be geodesic, which means they they curve will change depending of the line
closeness to north/south pole.
|
void |
setStrokeColor(java.lang.String strokeColor)
Sets stroke color in any CSS3 format except extended name colors (aquamarine, chocolate etc).
|
void |
setStrokeOpacity(double strokeOpacity)
Sets stroke opacity.
|
void |
setStrokeWeight(int strokeWeight)
Sets stroke weight in pixels.
|
void |
setzIndex(int zIndex)
Sets z-index
|
void setCoordinates(java.util.List<GeoPoint> coordinates)
coordinates
- coordinatesjava.util.List<GeoPoint> getCoordinates()
void setStrokeColor(java.lang.String strokeColor)
strokeColor
- stroke colorjava.lang.String getStrokeColor()
void setStrokeOpacity(double strokeOpacity)
strokeOpacity
- stroke opacitydouble getStrokeOpacity()
void setStrokeWeight(int strokeWeight)
strokeWeight
- stroke weight in pixelsint getStrokeWeight()
void setzIndex(int zIndex)
zIndex
- z-indexint getzIndex()
void setGeodesic(boolean geodesic)
geodesic
- true if edges should be geodesicboolean isGeodesic()