mapView.wxml 535 B

123456789101112131415161718192021
  1. <view>
  2. <!-- 地图组件 -->
  3. <map
  4. id="map"
  5. latitude="{{latitude}}"
  6. longitude="{{longitude}}"
  7. scale="{{scale}}"
  8. ground-overlays="{{groundOverlays}}"
  9. markers="{{markers}}"
  10. bindtap="handleMapTap"
  11. bindcallouttap="onCalloutTap"
  12. bindmarkertap="onMarkerTap"
  13. style="width: 100%; height: 80vh;">
  14. </map>
  15. <!-- 控制图层显示的开关 -->
  16. <view class="switch-container">
  17. <switch checked="{{showOverlay}}" bindchange="toggleOverlay" />
  18. <text>显示耕地图层</text>
  19. </view>
  20. </view>