Follow us on GitHub

com.google.gwt.maps.client.overlays
Class CircleOptions

java.lang.Object
  extended by com.google.gwt.core.client.JavaScriptObject
      extended by com.google.gwt.maps.client.overlays.CircleOptions

public class CircleOptions
extends JavaScriptObject

Circle Options

See CircleOptions API Doc


Constructor Summary
protected CircleOptions()
          use newInstance();
 
Method Summary
 LatLng getCenter()
          gets the center
 boolean getClickable()
          gets Indicates whether this Polyline handles click events.
 String getFillColor()
          The fill color.
 double getFillOpacity()
          The fill opacity between 0.0 and 1.0
 MapWidget getMapWidget()
          gets Map on which to display Polyline.
 double getRadius()
          gets The radius in meters on the Earth's surface
 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 rectangles.
static CircleOptions newInstance()
          creates Circle options
 void setCenter(LatLng center)
          sets the center
 void setClickable(boolean clickable)
          sets Indicates whether this Polyline handles click events.
 void setFillColor(String fillColor)
          The fill color.
 void setFillOpacity(double fillOpacity)
          The fill opacity between 0.0 and 1.0
 void setMap(MapWidget mapWidget)
          sets Map on which to display Polyline.
 void setRadius(double radius)
          sets The radius in meters on the Earth's surface
 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 rectangles.
 
Methods inherited from class com.google.gwt.core.client.JavaScriptObject
cast, createArray, createFunction, createObject, equals, hashCode, toSource, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CircleOptions

protected CircleOptions()
use newInstance();

Method Detail

newInstance

public static final CircleOptions newInstance()
creates Circle options


setCenter

public final void setCenter(LatLng center)
sets the center

Parameters:
center -

getCenter

public final LatLng getCenter()
gets the center


setClickable

public final void setClickable(boolean clickable)
sets Indicates whether this Polyline handles click events. Defaults to true.

Parameters:
clickable -

getClickable

public final boolean getClickable()
gets Indicates whether this Polyline handles click events. Defaults to true.


setFillColor

public final void setFillColor(String fillColor)
The fill color. All CSS3 colors are supported except for extended named colors.

Parameters:
fillColor -

getFillColor

public final String getFillColor()
The fill color. All CSS3 colors are supported except for extended named colors.


setFillOpacity

public final void setFillOpacity(double fillOpacity)
The fill opacity between 0.0 and 1.0

Parameters:
fillOpacity -

getFillOpacity

public final double getFillOpacity()
The fill opacity between 0.0 and 1.0


setMap

public final void setMap(MapWidget mapWidget)
sets Map on which to display Polyline.

Parameters:
mapWidget -

getMapWidget

public final MapWidget getMapWidget()
gets Map on which to display Polyline.


setRadius

public final void setRadius(double radius)
sets The radius in meters on the Earth's surface

Parameters:
radius -

getRadius

public final double getRadius()
gets The radius in meters on the Earth's surface


setStrokeColor

public final void setStrokeColor(String strokeColor)
sets The stroke color. All CSS3 colors are supported except for extended named colors.

Parameters:
strokeColor -

getStrokeColor

public final String getStrokeColor()
gets The stroke color. All CSS3 colors are supported except for extended named colors.


setStrokeOpacity

public final void setStrokeOpacity(double strokeOpacity)
sets The stroke opacity between 0.0 and 1.0

Parameters:
strokeOpacity -

getStrokeOpacity

public final double getStrokeOpacity()
gets The stroke opacity between 0.0 and 1.0


setStrokeWeight

public final void setStrokeWeight(int strokeWeight)
sets The stroke width in pixels.

Parameters:
strokeWeight -

getStrokeWeight

public final int getStrokeWeight()
gets The stroke width in pixels.


setZindex

public final void setZindex(int zIndex)
sets The zIndex compared to other rectangles.

Parameters:
zIndex -

getZindex

public final int getZindex()
gets The zIndex compared to other rectangles.



Follow us on GitHub

Copyright © 2011-2012 Gone Vertical LLC. All Rights Reserved.