carPosition.wxml 967 B

1234567891011121314151617181920212223242526
  1. <!--车辆位置-->
  2. <view class="carPosition">
  3. <map id="map" longitude="{{longitude}}" latitude="{{latitude}}" scale="14" controls="{{controls}}" markers="{{markers}}" polyline="{{polyline}}" show-location></map>
  4. <view class="date">
  5. <view style="display:flex;justcontent:space-between;" >
  6. <text>开始时间:</text>
  7. <pickerYMDHM bind:onPickerChange="start" date="{{startTime}}"></pickerYMDHM>
  8. </view>
  9. <view style="display:flex;justcontent:space-between;" >
  10. <text>结束时间:</text>
  11. <pickerYMDHM bind:onPickerChange="end" date="{{endTime}}"></pickerYMDHM>
  12. </view>
  13. <view class="flexB">
  14. <text class="btn" bindtap="show">显示轨迹</text>
  15. <text class="btn" bindtap="hidn">清除轨迹</text>
  16. </view>
  17. </view>
  18. <view class="hint">
  19. <text class="color"></text>
  20. <text>用户骑行</text>
  21. <text class="color color1"></text>
  22. <text>运维骑行</text>
  23. <text class="color color2"></text>
  24. <text>未骑行</text>
  25. </view>
  26. </view>