geoView function
Creates a GeoView widget with the given parameters.
Implementation
GeoView geoView({
required Projection projection,
required dynamic geoJson,
Color? fillColor,
Color? strokeColor,
double strokeWidth = 1.0,
void Function(dynamic feature, Point position)? onFeatureTap,
bool antiAlias = true,
}) {
return GeoView(
projection: projection,
geoJson: geoJson,
fillColor: fillColor,
strokeColor: strokeColor,
strokeWidth: strokeWidth,
onFeatureTap: onFeatureTap,
antiAlias: antiAlias,
);
}