1234567891011121314151617181920212223242526 |
- <!--车辆位置-->
- <view class="carPosition">
- <map id="map" longitude="{{longitude}}" latitude="{{latitude}}" scale="14" controls="{{controls}}" markers="{{markers}}" polyline="{{polyline}}" show-location></map>
- <view class="date">
- <view style="display:flex;justcontent:space-between;" >
- <text>开始时间:</text>
- <pickerYMDHM bind:onPickerChange="start" date="{{startTime}}"></pickerYMDHM>
- </view>
- <view style="display:flex;justcontent:space-between;" >
- <text>结束时间:</text>
- <pickerYMDHM bind:onPickerChange="end" date="{{endTime}}"></pickerYMDHM>
- </view>
- <view class="flexB">
- <text class="btn" bindtap="show">显示轨迹</text>
- <text class="btn" bindtap="hidn">清除轨迹</text>
- </view>
- </view>
- <view class="hint">
- <text class="color"></text>
- <text>用户骑行</text>
- <text class="color color1"></text>
- <text>运维骑行</text>
- <text class="color color2"></text>
- <text>未骑行</text>
- </view>
- </view>
|