Packagecom.google.maps.controls
Classpublic class OverviewMapControlOptions

Class OverviewMapControlOptions specifies a set of options for the overview map control.



Public Properties
 PropertyDefined 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
Public Methods
 MethodDefined by
  
OverviewMapControlOptions(param:Object = null)
Constructs an OverviewMapControlOptions object, optionally initializing it from an object.
OverviewMapControlOptions
  
toString():String
toString method.
OverviewMapControlOptions
Property detail
controlStyleproperty
controlStyle:BevelStyle  [read-write]

Control's bevel style.

Implementation
    public function get controlStyle():BevelStyle
    public function set controlStyle(value:BevelStyle):void
navigatorStyleproperty 
navigatorStyle:RectangleStyle  [read-write]

Navigator window stroke style.

Implementation
    public function get navigatorStyle():RectangleStyle
    public function set navigatorStyle(value:RectangleStyle):void
paddingproperty 
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
positionproperty 
position:ControlPosition  [read-write]

Control's position on the map.

Implementation
    public function get position():ControlPosition
    public function set position(value:ControlPosition):void
sizeproperty 
size:Point  [read-write]

Control's size.

Implementation
    public function get size():Point
    public function set size(value:Point):void
Constructor detail
OverviewMapControlOptions()constructor
public function OverviewMapControlOptions(param:Object = null)

Constructs an OverviewMapControlOptions object, optionally initializing it from an object.

Parameters
param: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)
   }
Method detail
toString()method
public function toString():String

toString method.

Returns
String — String representation of the style.