12345678910111213141516171819202122232425262728 |
- <map id="map" longitude="{{mapCenter.longitude}}" latitude="{{mapCenter.latitude}}" scale="17" markers="{{markers}}"
- show-location polyline="{{polyline}}" class="map"></map>
- <view class="title-bar">
- <view>{{device.name}}</view>
- <view>电量: {{location.batteryNum}}% | 信号强度: {{location.signal}}</view>
- </view>
- <view class="siteInfo" wx:if="{{location!=null}}">
- <view class="address">{{location.site}}</view>
- <view class="indate">{{location.latestTime}}</view>
- </view>
- <view class="circle-nav center" bindtap="center">
- <image src="/imgs/center.png" />
- </view>
- <view class="debug">
- <view>信号: {{location.signalNum}}</view>
- <view>定位模式: {{location.mode}}</view>
- <view>经度: {{location.lon}}</view>
- <view>纬度: {{location.lat}}</view>
- <view>经度(Gcj): {{location.lonGcj}}</view>
- <view>纬度(Gcj): {{location.latGcj}}</view>
- <view>速度: {{location.speed}}</view>
- <view>卫星颗数: {{location.num}}</view>
- <view>{{location.uploadTime}}</view>
- </view>
|