Options
All
  • Public
  • Public/Protected
  • All
Menu

The types of overlay that may be created by the DrawingManager. Specify these by value, or by using the constant's name. For example, 'polygon' or google.maps.drawing.OverlayType.POLYGON.

Access by calling const {OverlayType} = await google.maps.importLibrary("drawing"). See https://developers.google.com/maps/documentation/javascript/libraries.

Index

Enumeration Members

CIRCLE: "circle"

Specifies that the DrawingManager creates circles, and that the overlay given in the overlaycomplete event is a circle.

MARKER: "marker"

Specifies that the DrawingManager creates markers, and that the overlay given in the overlaycomplete event is a marker.

POLYGON: "polygon"

Specifies that the DrawingManager creates polygons, and that the overlay given in the overlaycomplete event is a polygon.

POLYLINE: "polyline"

Specifies that the DrawingManager creates polylines, and that the overlay given in the overlaycomplete event is a polyline.

RECTANGLE: "rectangle"

Specifies that the DrawingManager creates rectangles, and that the overlay given in the overlaycomplete event is a rectangle.

Generated using TypeDoc