MapView constructor
const
MapView({
- required Key key,
- required MapViewConfiguration configuration,
- required MapViewCallback onLoad,
- OnMapViewErrorCallback? onError,
- MapViewCallback? didUpdateCallback,
MapView is the main component and entry point for Situm Flutter Wayfinding. This widget will load your Situm building on a map, based on the given MapViewConfiguration.
Implementation
const MapView({
required Key key,
required this.configuration,
required this.onLoad,
this.onError,
this.didUpdateCallback,
}) : super(key: key);