index.wxml 1.0 KB

123456789101112131415161718192021222324
  1. <map
  2. style="width: 100vw; height: 100vh;"
  3. scale="9"
  4. longitude="{{ geo[0] }}"
  5. latitude="{{ geo[1] }}"
  6. />
  7. <view class="page page_fixed">
  8. <view class="page__hd">
  9. <view class="page__title">FloatingPanel</view>
  10. <view class="page__desc">浮动面板</view>
  11. </view>
  12. <view class="page__bd">
  13. <wux-floating-panel id="wux-floating-panel" defaultAnchors="{{ defaultAnchors }}" bind:heightChange="onHeightChange">
  14. <view style="box-sizing: border-box; padding: 20px; height: {{ height }}; background-image: {{ backgroundImage }};">
  15. <wux-cell-group>
  16. <block wx:for="{{ locations }}" wx:key="name">
  17. <wux-cell is-link title="{{ item.name }}" data-geo="{{ item.geo }}" bind:click="onLocation"></wux-cell>
  18. </block>
  19. </wux-cell-group>
  20. <wux-button block type="light" bind:click="setHeight">收起至200px</wux-button>
  21. </view>
  22. </wux-floating-panel>
  23. </view>
  24. </view>