warnMap.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <view class="container">
  3. <map
  4. id="myMap"
  5. :longitude="alarmInfo.longitude"
  6. :latitude="alarmInfo.latitude"
  7. scale="14"
  8. :markers="marker"
  9. @markertap="bindMarkertap"
  10. show-location
  11. style="width: 100%; height: 100vh"
  12. @tap="bindTapMap"
  13. ></map>
  14. </view>
  15. </template>
  16. <script>
  17. // pages/warmMap/warnMap.js
  18. const config = require('../../common/config.js');
  19. const common = require('../../common/common.js');
  20. var storage = require('../../common/storage.js');
  21. var QQMapWX = require('../../libs/qqmap-wx-jssdk.js');
  22. var qqmapsdk;
  23. export default {
  24. data() {
  25. return {
  26. alarmInfo: {
  27. longitude: '',
  28. latitude: ''
  29. },
  30. marker: []
  31. };
  32. }
  33. /**
  34. * 生命周期函数--监听页面加载
  35. */,
  36. onLoad: function (options) {
  37. uni.setNavigationBarTitle({
  38. title: this.$t('报警位置')
  39. });
  40. const index = options.index;
  41. this.readyAlarmInfo();
  42. },
  43. methods: {
  44. readyAlarmInfo() {
  45. const me = this;
  46. // 实例化API核心类
  47. qqmapsdk = new QQMapWX({
  48. key: config.QQ_MAP_KEY
  49. });
  50. const thisAlarm = storage.getAlarmInfo();
  51. console.log(thisAlarm);
  52. qqmapsdk.reverseGeocoder({
  53. location: {
  54. latitude: thisAlarm.latitude,
  55. longitude: thisAlarm.longitude
  56. },
  57. success: function (res) {
  58. console.log(res);
  59. const formatted_addresses = res.result.formatted_addresses;
  60. const address = res.result.address; //+ formatted_addresses.recommend
  61. let ps = '';
  62. let tmp_addr = me.$t('地址')+': '+ + address;
  63. while (tmp_addr.length > 15) {
  64. ps += tmp_addr.substring(0, 15) + '\n';
  65. tmp_addr = tmp_addr.substring(15);
  66. }
  67. ps += tmp_addr;
  68. const content =
  69. me.$t('名称')+': ' +
  70. thisAlarm.macid +
  71. '\n'+me.$t('状态')+ ': ' +
  72. thisAlarm.alarm_desc +
  73. '\n'+me.$t('信号')+ ': ' +
  74. common.formatTime(thisAlarm.gps_time) +
  75. '\n'+me.$t('时间')+ ': ' +
  76. common.formatTime(thisAlarm.send_time) +
  77. '\n' +
  78. ps;
  79. me.setData({
  80. alarmInfo: thisAlarm,
  81. marker: [
  82. {
  83. id: 1,
  84. latitude: thisAlarm.latitude,
  85. longitude: thisAlarm.longitude,
  86. name: '',
  87. iconPath: 'https://qiniu.bms16.com/FkjUlfdPB1qabw-qNWCRQtiD-s55',
  88. width: 35,
  89. height: 35,
  90. callout: {
  91. content: content,
  92. padding: 10,
  93. borderRadius: 4,
  94. boxShadow: '4px 8px 16px 0 rgba(0,0,0,0.3)',
  95. display: 'ALWAYS'
  96. }
  97. }
  98. ]
  99. });
  100. }
  101. });
  102. console.log(this.alarmInfo);
  103. },
  104. bindMarkertap() {
  105. console.log('占位:函数 bindMarkertap 未声明');
  106. },
  107. bindTapMap() {
  108. console.log('占位:函数 bindTapMap 未声明');
  109. }
  110. }
  111. };
  112. </script>
  113. <style>
  114. @import './warnMap.css';
  115. </style>