Marker.fromArea constructor

Marker.fromArea(
  1. GeographicArea area
)

Construct a marker from a geographic area.

Parameters

  • IN area The geographic area which shape will be converted to marker

Implementation

factory Marker.fromArea(final GeographicArea area) {
  return Marker._createFromArea(area);
}