Map constructor
Map({ - Key? key,
- required double latitude,
- required double longitude,
- required double zoom,
- required double tilt,
- required double bearing,
- required double orbitTilt,
- required double orbitRange,
- MapType mapType = MapType.none,
- Set<Polyline> polylines = const {},
- String? kmlName,
- LatLngBounds? bounds,
- int boost = 0,
- bool canOrbit = true,
- MinMaxZoomPreference minMaxZoomPreference = MinMaxZoomPreference.unbounded,
})
Implementation
Map(
{super.key,
required this.latitude,
required this.longitude,
required this.zoom,
required this.tilt,
required this.bearing,
required this.orbitTilt,
required this.orbitRange,
this.mapType = MapType.none,
this.polylines = const {},
this.kmlName,
this.bounds,
this.boost = 0,
this.canOrbit = true,
this.minMaxZoomPreference = MinMaxZoomPreference.unbounded});