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);
},
);
}