google_map_smooth_polygon 1.0.1+1
google_map_smooth_polygon: ^1.0.1+1 copied to clipboard
A package for smooth polygon heatmaps
google_map_smooth_polygon #

This package provides functionality to create smooth transition polygons on Google Maps using Flutter. It helps users to render polygons with smooth edges and transitions, enhancing the visual appeal of map overlays.
Features #
- Smooth transition polygons on Google Maps.
- Customizable polygon styles and animations.
Usage #
Below is a simple example of how to use the package:
import 'package:google_map_smooth_polygon/google_map_smooth_polygon.dart';
GoogleMap(
tileOverlays: SmoothPolygon(
polygons: polygons,
baseBlurRadius: 30,
transparency: 0.3,
opacityLevels: [0.9, 0.01, 0.001, 0.0],
).createTileOverlays(),
),