C端小程序
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.

19 lines
1.3 KiB

  1. <!-- pages/FMController/index.wxml -->
  2. <navbar home back text="商场地图">
  3. </navbar>
  4. <view style="height:{{navigationBarHeight}} "></view>
  5. <view class="container">
  6. <!-- 加载地图容器 -->
  7. <canvas type="webgl" id="fengMap" style="width: 100%; height: 100%;" disable-scroll bindtouchstart="touchStart" bindtouchmove="touchMove" bindtouchend="touchEnd">
  8. <!-- 楼层控件一 滚动型楼层控件 -->
  9. <FMScrollGroupsControl id="scrollGroupsControl" wx:if="{{mapLoaded == true }}" focusGroupID="{{focusGroupID}}" groupIDs="{{mapGroupIDs}}" allLayer="{{isAllLayer}}" showBtnCount="3" bind:switchGroup="switchGroup" bind:switchLayers="switchLayers" />
  10. <!-- 楼层控件二 按钮型楼层控件 -->
  11. <!-- <FMButtonGroupsControl id="buttonGroupsControl" wx:if="{{mapLoaded == true }}" focusGroupID="{{focusGroupID}}" groupIDs="{{mapGroupIDs}}" showBtnCount="3" bind:switchGroup="switchGroup" /> -->
  12. <!-- 2、3D控件 -->
  13. <FMViewModeControl wx:if="{{mapLoaded == true }}" is3D="{{is3D}}" bind:changeMode="changeMode" />
  14. <!-- 单、多楼层控件 -->
  15. <!-- <FMAllLayerControl wx:if="{{mapLoaded == true }}" allLayer="{{isAllLayer}}" bind:switchLayers="switchLayers" /> -->
  16. </canvas>
  17. <!-- 2d画布 -->
  18. <canvas type="2d" id="temp"></canvas>
  19. </view>