You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <!-- pages/FMController/index.wxml -->
- <navbar home back text="商场地图">
- </navbar>
- <view style="height:{{navigationBarHeight}} "></view>
- <view class="container">
- <!-- 加载地图容器 -->
- <canvas type="webgl" id="fengMap" style="width: 100%; height: 100%;" disable-scroll bindtouchstart="touchStart" bindtouchmove="touchMove" bindtouchend="touchEnd">
- <!-- 楼层控件一 滚动型楼层控件 -->
- <FMScrollGroupsControl id="scrollGroupsControl" wx:if="{{mapLoaded == true }}" focusGroupID="{{focusGroupID}}" groupIDs="{{mapGroupIDs}}" allLayer="{{isAllLayer}}" showBtnCount="3" bind:switchGroup="switchGroup" bind:switchLayers="switchLayers" />
- <!-- 楼层控件二 按钮型楼层控件 -->
- <!-- <FMButtonGroupsControl id="buttonGroupsControl" wx:if="{{mapLoaded == true }}" focusGroupID="{{focusGroupID}}" groupIDs="{{mapGroupIDs}}" showBtnCount="3" bind:switchGroup="switchGroup" /> -->
- <!-- 2、3D控件 -->
- <FMViewModeControl wx:if="{{mapLoaded == true }}" is3D="{{is3D}}" bind:changeMode="changeMode" />
- <!-- 单、多楼层控件 -->
- <!-- <FMAllLayerControl wx:if="{{mapLoaded == true }}" allLayer="{{isAllLayer}}" bind:switchLayers="switchLayers" /> -->
- </canvas>
- <!-- 2d画布 -->
- <canvas type="2d" id="temp"></canvas>
- </view>
|