Package | com.google.maps.controls |
Class | public class OverviewMapControlOptions |
Property | Defined by | ||
---|---|---|---|
controlStyle : BevelStyle
Control's bevel style.
| OverviewMapControlOptions | ||
navigatorStyle : RectangleStyle
Navigator window stroke style.
| OverviewMapControlOptions | ||
padding : Point
Gap between the border and the content of the control.
| OverviewMapControlOptions | ||
position : ControlPosition
Control's position on the map.
| OverviewMapControlOptions | ||
size : Point
Control's size.
| OverviewMapControlOptions |
Method | Defined by | ||
---|---|---|---|
OverviewMapControlOptions(param:Object = null)
Constructs an OverviewMapControlOptions object, optionally initializing it
from an object.
| OverviewMapControlOptions | ||
toString():String
toString method.
| OverviewMapControlOptions |
controlStyle | property |
controlStyle:BevelStyle
[read-write]Control's bevel style.
Implementation public function get controlStyle():BevelStyle
public function set controlStyle(value:BevelStyle):void
navigatorStyle | property |
navigatorStyle:RectangleStyle
[read-write]Navigator window stroke style.
Implementation public function get navigatorStyle():RectangleStyle
public function set navigatorStyle(value:RectangleStyle):void
padding | property |
padding:Point
[read-write]Gap between the border and the content of the control.
Implementation public function get padding():Point
public function set padding(value:Point):void
position | property |
position:ControlPosition
[read-write]Control's position on the map.
Implementation public function get position():ControlPosition
public function set position(value:ControlPosition):void
size | property |
size:Point
[read-write]Control's size.
Implementation public function get size():Point
public function set size(value:Point):void
OverviewMapControlOptions | () | constructor |
public function OverviewMapControlOptions(param:Object = null)
Constructs an OverviewMapControlOptions object, optionally initializing it from an object.
Parametersparam:Object (default = null ) — An initialization object containing a set of
values that supplement the default set.
// Initialization object corresponding to the default set. { size: { x: 100, y: 100 }, padding: { x: 4, y: 4 }, controlStyle: { fillStyle: { color: Color.WHITE, alpha: 1.0 }, strokeStyle: { color: Color.BLACK, alpha: 1.0, thickness: 1.0 }, bevelStyle: BevelStyle.BEVEL_RAISED, bevelThickness: 2.0, bevelAlpha: 0.6, highlightColor: Color.WHITE, shadowColor: Color.BLACK }, navigatorStyle: { fillStyle: { color: NAVIGATOR_COLOR, alpha: Alpha.PERCENT_20 }, strokeStyle: { thickness: 2, color: NAVIGATOR_COLOR, alpha: 1.0 } }, position: new ControlPosition(ControlPosition.ANCHOR_BOTTOM_RIGHT, 10) } |
toString | () | method |
public function toString():String
toString method.
ReturnsString — String representation of the style.
|