πŸ—ΊοΈ google_map_dotted_polygon

A Flutter package to draw dotted or dashed polygons on Google Maps β€” perfect for visualizing map zones, areas, or custom boundaries.


Example Screenshot

Dotted Polygon Example

✨ Features

βœ… Draw dotted or dashed polygons
βœ… Customize color, gap, and stroke width
βœ… Lightweight and easy to integrate
βœ… Works with google_maps_flutter


πŸ“¦ Installation

Add to your pubspec.yaml:

dependencies:
  google_map_dotted_polygon: ^0.0.1


## Usage

final dottedPolygons = GoogleMapDottedPolygon.createDottedPolygon(
  points: myZonePoints,
  color: Colors.red,
  gap: 0.0003,
);