eleCarMap.wxml 704 B

1234567891011121314151617181920
  1. <view class='view'>
  2. <map longitude="{{longitude}}" latitude="{{latitude}}" markers="{{markers}}" covers="{{covers}}" show-location>
  3. <cover-view slot="callout">
  4. <block wx:for="{{customCalloutMarkerIds}}" wx:key="*this">
  5. <cover-view class="customCallout" marker-id="{{item}}" >
  6. <cover-image class="icon" src="/image/voice.png"></cover-image>
  7. <cover-view class="content">
  8. {{num}}-{{item}}-{{index}}
  9. </cover-view>
  10. </cover-view>
  11. </block>
  12. </cover-view>
  13. </map>
  14. <text class="txt">请选择可用车位和电池包</text>
  15. <button class='login_button' bindtap="bindCar">呼叫充电车</button>
  16. </view>