Polygon Layer
FlutterMap(
options: MapOptions(),
children: [
PolygonLayer(
polygonCulling: false,
polygons: [
Polygon(
points: [LatLng(30, 40), LatLng(20, 50), LatLng(25, 45),],
color: Colors.blue,
),
],
),
],
),Polygons (polygons)
polygons)Property
Type
Defaults
Description
More Polygon Operations
Last updated
Was this helpful?