MapLocation constructor

MapLocation({
  1. LatLng centroid = const LatLng(47.2, 2.2),
  2. String? placename,
  3. List<LatLng> boundingBox = const [],
  4. double initialZoom = 6.4,
})

Implementation

MapLocation({
  this.centroid = const LatLng(47.2, 2.2),
  this.placename,
  this.boundingBox = const [],
  this.initialZoom = 6.4,
});