showIndoorMap method
是否显示室内地图
Implementation
Future showIndoorMap(bool show) {
return platform(
android: (pool) async {
final map = await _androidController.getMap();
await map.showIndoorMap(show);
pool..add(map);
},
ios: (pool) async {
await _iosController.set_showsIndoorMap(show);
},
);
}