warnMap.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. const index = options.index;
  38. this.readyAlarmInfo();
  39. },
  40. methods: {
  41. readyAlarmInfo() {
  42. const me = this;
  43. // 实例化API核心类
  44. qqmapsdk = new QQMapWX({
  45. key: config.QQ_MAP_KEY
  46. });
  47. const thisAlarm = storage.getAlarmInfo();
  48. console.log(thisAlarm);
  49. qqmapsdk.reverseGeocoder({
  50. location: {
  51. latitude: thisAlarm.latitude,
  52. longitude: thisAlarm.longitude
  53. },
  54. success: function (res) {
  55. console.log(res);
  56. const formatted_addresses = res.result.formatted_addresses;
  57. const address = res.result.address; //+ formatted_addresses.recommend
  58. let ps = '';
  59. let tmp_addr = '地址: ' + address;
  60. while (tmp_addr.length > 15) {
  61. ps += tmp_addr.substring(0, 15) + '\n';
  62. tmp_addr = tmp_addr.substring(15);
  63. }
  64. ps += tmp_addr;
  65. const content =
  66. '名称: ' +
  67. thisAlarm.macid +
  68. '\n状态: ' +
  69. thisAlarm.alarm_desc +
  70. '\n信号: ' +
  71. common.formatTime(thisAlarm.gps_time) +
  72. '\n时间: ' +
  73. common.formatTime(thisAlarm.send_time) +
  74. '\n' +
  75. ps;
  76. me.setData({
  77. alarmInfo: thisAlarm,
  78. marker: [
  79. {
  80. id: 1,
  81. latitude: thisAlarm.latitude,
  82. longitude: thisAlarm.longitude,
  83. name: '',
  84. iconPath: '/static/resource/images/qidian.png',
  85. width: 35,
  86. height: 35,
  87. callout: {
  88. content: content,
  89. padding: 10,
  90. borderRadius: 4,
  91. boxShadow: '4px 8px 16px 0 rgba(0,0,0,0.3)',
  92. display: 'ALWAYS'
  93. }
  94. }
  95. ]
  96. });
  97. }
  98. });
  99. console.log(this.alarmInfo);
  100. },
  101. bindMarkertap() {
  102. console.log('占位:函数 bindMarkertap 未声明');
  103. },
  104. bindTapMap() {
  105. console.log('占位:函数 bindTapMap 未声明');
  106. }
  107. }
  108. };
  109. </script>
  110. <style>
  111. @import './warnMap.css';
  112. </style>