Skip to content

Latest commit

 

History

History
278 lines (140 loc) · 7.62 KB

Polygon.md

File metadata and controls

278 lines (140 loc) · 7.62 KB

See html formatted version

Polygon class

google.maps.Polygon class

A polygon (like a polyline) defines a series of connected coordinates in an ordered sequence. Additionally, polygons form a closed loop and define a filled region. See the samples in the developer's guide, starting with a simple polygon, a polygon with a hole, and more. Note that you can also use the Data layer to create a polygon. The Data layer offers a simpler way of creating holes because it handles the order of the inner and outer paths for you.

This class extends MVCObject.

Constructor

undefined

Polygon([opts])

Parameters: 

Create a polygon using the passed PolygonOptions, which specify the polygon's path, the stroke style for the polygon's edges, and the fill style for the polygon's interior regions. A polygon may contain one or more paths, where each path consists of an array of LatLngs. You may pass either an array of LatLngs or an MVCArray of LatLngs when constructing these paths. Arrays are converted to MVCArrays within the polygon upon instantiation.

Methods

undefined

getDraggable()

Parameters:  None

Return Value:  boolean

Returns whether this shape can be dragged by the user.

undefined

getEditable()

Parameters:  None

Return Value:  boolean

Returns whether this shape can be edited by the user.

undefined

getMap()

Parameters:  None

Return Value:  Map

Returns the map on which this shape is attached.

undefined

getPath()

Parameters:  None

Return Value:  MVCArray<LatLng>

Retrieves the first path.

undefined

getPaths()

Parameters:  None

Return Value:  MVCArray<MVCArray<LatLng>>

Retrieves the paths for this polygon.

undefined

getVisible()

Parameters:  None

Return Value:  boolean

Returns whether this poly is visible on the map.

undefined

setDraggable(draggable)

Parameters: 

  • draggable:  boolean

Return Value:  None

If set to true, the user can drag this shape over the map. The geodesic property defines the mode of dragging.

undefined

setEditable(editable)

Parameters: 

  • editable:  boolean

Return Value:  None

If set to true, the user can edit this shape by dragging the control points shown at the vertices and on each segment.

undefined

setMap(map)

Parameters: 

Return Value:  None

Renders this shape on the specified map. If map is set to null, the shape will be removed.

undefined

setOptions(options)

Parameters: 

Return Value:  None

undefined

setPath(path)

Parameters: 

Return Value:  None

Sets the first path. See PolygonOptions for more details.

undefined

setPaths(paths)

Parameters: 

Return Value:  None

Sets the path for this polygon.

undefined

setVisible(visible)

Parameters: 

  • visible:  boolean

Return Value:  None

Hides this poly if set to false.

Events

undefined

function(event)

Arguments: 

This event is fired when the DOM click event is fired on the Polygon.

undefined

function(event)

Arguments: 

This event is fired when the DOM dblclick event is fired on the Polygon.

undefined

function(event)

Arguments: 

This event is repeatedly fired while the user drags the polygon.

undefined

function(event)

Arguments: 

This event is fired when the user stops dragging the polygon.

undefined

function(event)

Arguments: 

This event is fired when the user starts dragging the polygon.

undefined

function(event)

Arguments: 

This event is fired when the DOM mousedown event is fired on the Polygon.

undefined

function(event)

Arguments: 

This event is fired when the DOM mousemove event is fired on the Polygon.

undefined

function(event)

Arguments: 

This event is fired on Polygon mouseout.

undefined

function(event)

Arguments: 

This event is fired on Polygon mouseover.

undefined

function(event)

Arguments: 

This event is fired when the DOM mouseup event is fired on the Polygon.

undefined

function(event)

Arguments: 

This event is fired when the Polygon is right-clicked on.