Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GooglePolylineLayerOptions

Hierarchy

  • PolylineOptions
    • GooglePolylineLayerOptions

Index

Properties

Optional clickable

clickable: boolean

Indicates whether this Polyline handles mouse events. Defaults to true.

Optional draggable

draggable: boolean

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

Optional editable

editable: boolean

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

Optional geodesic

geodesic: boolean

When true, edges of the polygon are interpreted as geodesic and will follow the curvature of the Earth. When false, edges of the polygon are rendered as straight lines in screen space. Note that the shape of a geodesic polygon may appear to change when dragged, as the dimensions are maintained relative to the surface of the earth. Defaults to false.

Optional icons

icons: IconSequence[]

The icons to be rendered along the polyline.

Optional map

map: Map

Map on which to display Polyline.

Optional path

path: MVCArray<LatLng> | LatLng[] | LatLngLiteral[]

The ordered sequence of coordinates of the Polyline. This path may be specified using either a simple array of LatLngs, or an MVCArray of LatLngs. Note that if you pass a simple array, it will be converted to an MVCArray Inserting or removing LatLngs in the MVCArray will automatically update the polyline on the map.

Optional strokeColor

strokeColor: string

The stroke color. All CSS3 colors are supported except for extended named colors.

Optional strokeOpacity

strokeOpacity: number

The stroke opacity between 0.0 and 1.0.

Optional strokeWeight

strokeWeight: number

The stroke width in pixels.

Optional visible

visible: boolean

Whether this polyline is visible on the map. Defaults to true.

Optional zIndex

zIndex: number

The zIndex compared to other polys.

Generated using TypeDoc