hideFloorSelector method

Future<void> hideFloorSelector(
  1. bool hide
)

Shows or hides the MPFloorSelectorInterface, i.e. hiding the View from MapsIndoorsWidget

MapsIndoorsWidget will still receive relevant events on floor updates, building change etc.

The Interface will also receive the events, making it possible to show/hide in real time, without refreshing the map.

Implementation

Future<void> hideFloorSelector(bool hide) {
  return MapcontrolPlatform.instance.hideFloorSelector(hide);
}