Options
All
  • Public
  • Public/Protected
  • All
Menu

These options specify the way a Feature should appear when displayed on a map.

Hierarchy

  • StyleOptions

Index

Properties

animation?: google.maps.Animation

The animation to play when marker is added to a map. Only applies to point geometries.

clickable?: boolean

If true, the marker receives mouse and touch events.

defaultvalue

true

cursor?: string

Mouse cursor to show on hover. Only applies to point geometries.

draggable?: boolean

If true, the object can be dragged across the map and the underlying feature will have its geometry updated.

defaultvalue

false

editable?: boolean

If true, the object can be edited by dragging control points and the underlying feature will have its geometry updated. Only applies to LineString and Polygon geometries.

defaultvalue

false

fillColor?: string

The fill color. All CSS3 colors are supported except for extended named colors. Only applies to polygon geometries.

fillOpacity?: number

The fill opacity between 0.0 and 1.0. Only applies to polygon geometries.

icon?: string | Icon | Symbol

Icon for the foreground. If a string is provided, it is treated as though it were an Icon with the string as url. Only applies to point geometries.

icons?: IconSequence[]

The icons to be rendered along a polyline. Only applies to line geometries.

label?: string | MarkerLabel

Adds a label to the marker. The label can either be a string, or a MarkerLabel object. Only applies to point geometries.

opacity?: number

The marker's opacity between 0.0 and 1.0. Only applies to point geometries.

shape?: MarkerShape

Defines the image map used for hit detection. Only applies to point geometries.

strokeColor?: string

The stroke color. All CSS3 colors are supported except for extended named colors. Only applies to line and polygon geometries.

strokeOpacity?: number

The stroke opacity between 0.0 and 1.0. Only applies to line and polygon geometries.

strokeWeight?: number

The stroke width in pixels. Only applies to line and polygon geometries.

title?: string

Rollover text. Only applies to point geometries.

visible?: boolean

Whether the feature is visible.

defaultvalue

true

zIndex?: number

All features are displayed on the map in order of their zIndex, with higher values displaying in front of features with lower values. Markers are always displayed in front of line-strings and polygons.

Generated using TypeDoc