MapSection constructor
const
MapSection({
- double? heightFactor,
- required List<
RoutePoint> route, - required LatLng startPoint,
- required bool showStartPoint,
- required Color primaryColor,
- required Map<
int, BitmapDescriptor> numberedMarkers, - required Map<
int, BitmapDescriptor> focusedMarkers, - required int? focusedIndex,
- required void onPointTap(
- LatLng,
- int
- required void onMapCreated(
- GoogleMapController
Implementation
const MapSection({
this.heightFactor,
required this.route,
required this.startPoint,
required this.showStartPoint,
required this.primaryColor,
required this.numberedMarkers,
required this.focusedMarkers,
required this.focusedIndex,
required this.onPointTap,
required this.onMapCreated,
});