TiledMap constructor

const TiledMap({
  1. Key? key,
  2. List<GeoFence>? geoFences,
  3. List<GeoPolygon>? geoPolygons,
  4. List<GeoMarker>? markers,
  5. List<GeoPolyLine>? polylines,
  6. TiledMapProvider provider = TiledMapProvider.google,
  7. void onTap(
    1. TapPosition position,
    2. LatLng latlng
    )?,
  8. MapController? controller,
  9. LatLng? center,
  10. double? zoom,
  11. double maxZoom = 21.0,
})

Implementation

const TiledMap({
  super.key,
  this.geoFences,
  this.geoPolygons,
  this.markers,
  this.polylines,
  this.provider = TiledMapProvider.google,
  this.onTap,
  this.controller,
  this.center,
  this.zoom,
  this.maxZoom = 21.0,
});