index.wxml 992 B

12345678910111213141516171819202122232425262728
  1. <map id="map" longitude="{{mapCenter.longitude}}" latitude="{{mapCenter.latitude}}" scale="17" markers="{{markers}}"
  2. show-location polyline="{{polyline}}" class="map"></map>
  3. <view class="title-bar">
  4. <view>{{device.name}}</view>
  5. <view>电量: {{location.batteryNum}}% | 信号强度: {{location.signal}}</view>
  6. </view>
  7. <view class="siteInfo" wx:if="{{location!=null}}">
  8. <view class="address">{{location.site}}</view>
  9. <view class="indate">{{location.latestTime}}</view>
  10. </view>
  11. <view class="circle-nav center" bindtap="center">
  12. <image src="/imgs/center.png" />
  13. </view>
  14. <view class="debug">
  15. <view>信号: {{location.signalNum}}</view>
  16. <view>定位模式: {{location.mode}}</view>
  17. <view>经度: {{location.lon}}</view>
  18. <view>纬度: {{location.lat}}</view>
  19. <view>经度(Gcj): {{location.lonGcj}}</view>
  20. <view>纬度(Gcj): {{location.latGcj}}</view>
  21. <view>速度: {{location.speed}}</view>
  22. <view>卫星颗数: {{location.num}}</view>
  23. <view>{{location.uploadTime}}</view>
  24. </view>