public class PolylineOptions extends JavaScriptObject
Modifier | Constructor and Description |
---|---|
protected |
PolylineOptions()
use newInstance();
|
Modifier and Type | Method and Description |
---|---|
boolean |
getClickable()
gets Indicates whether this Polyline handles click events.
|
boolean |
getGeodesic()
gets When true, render each edge as a geodesic (a segment of a "great circle").
|
MapWidget |
getMapWidget()
gets Map on which to display Polyline.
|
JsArray<LatLng> |
getPath_JsArray()
gets The ordered sequence of coordinates of the Polyline.
|
MVCArray<LatLng> |
getPath_MVCArray()
gets The ordered sequence of coordinates of the Polyline.
|
String |
getStrokeColor()
gets The stroke color.
|
double |
getStrokeOpacity()
gets The stroke opacity between 0.0 and 1.0
|
int |
getStrokeWeight()
gets The stroke width in pixels.
|
int |
getZindex()
gets The zIndex compared to other polys.
|
static PolylineOptions |
newInstance()
creates a new instance of options
|
void |
setClickable(boolean clickable)
sets Indicates whether this Polyline handles click events.
|
void |
setGeodesic(boolean geodesic)
sets When true, render each edge as a geodesic (a segment of a "great circle").
|
void |
setMap(MapWidget mapWidget)
sets Map on which to display Polyline.
|
void |
setPath(JsArray<LatLng> path)
sets The ordered sequence of coordinates of the Polyline.
|
void |
setPath(MVCArray<LatLng> path)
sets The ordered sequence of coordinates of the Polyline.
|
void |
setStrokeColor(String strokeColor)
sets The stroke color.
|
void |
setStrokeOpacity(double strokeOpacity)
sets The stroke opacity between 0.0 and 1.0
|
void |
setStrokeWeight(int strokeWeight)
sets The stroke width in pixels.
|
void |
setZindex(int zIndex)
sets The zIndex compared to other polys.
|
cast, createArray, createFunction, createObject, equals, hashCode, toSource, toString
public static final PolylineOptions newInstance()
public final void setClickable(boolean clickable)
clickable
- public final boolean getClickable()
public final void setGeodesic(boolean geodesic)
geodesic
- public final boolean getGeodesic()
public final void setMap(MapWidget mapWidget)
mapWidget
- public final MapWidget getMapWidget()
public final void setPath(MVCArray<LatLng> path)
path
- public final void setPath(JsArray<LatLng> path)
path
- public final MVCArray<LatLng> getPath_MVCArray()
public final JsArray<LatLng> getPath_JsArray()
public final void setStrokeColor(String strokeColor)
strokeColor
- public final String getStrokeColor()
public final void setStrokeOpacity(double strokeOpacity)
strokeOpacity
- public final double getStrokeOpacity()
public final void setStrokeWeight(int strokeWeight)
strokeWeight
- public final int getStrokeWeight()
public final void setZindex(int zIndex)
zIndex
- public final int getZindex()
Copyright © 2011-2013 Gone Vertical LLC. All Rights Reserved.