switchBaseIndoorMapFloor method

Future<BMFSwitchIndoorFloorError> switchBaseIndoorMapFloor (
  1. String floorId,
  2. String indoorId
)

设置室内图楼层

floorId 楼层id

indoorId 室内图ID

BMFSwitchIndoorFloorError 枚举:室内图切换楼层结果

Implementation

Future<BMFSwitchIndoorFloorError> switchBaseIndoorMapFloor(
    String floorId, String indoorId) async {
  return await BMFMapDispatcherFactory.instance
      .getMapStateDispatcher()
      .switchBaseIndoorMapFloorDispatch(_mapChannel, floorId, indoorId);
}