setMapStyle method

Future<void> setMapStyle(
  1. MPMapStyle mapstyle
)

Sets the map style for MapsIndoors tiles

mapstyle is a MPMapStyle object, a list of available MPMapStyles can be fetched via getMapStyles

Implementation

Future<void> setMapStyle(MPMapStyle mapstyle) {
  return MapcontrolPlatform.instance.setMapStyle(mapstyle);
}