123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <template>
- <view class="container">
- <map
- id="myMap"
- :longitude="alarmInfo.longitude"
- :latitude="alarmInfo.latitude"
- scale="14"
- :markers="marker"
- @markertap="bindMarkertap"
- show-location
- style="width: 100%; height: 100vh"
- @tap="bindTapMap"
- ></map>
- </view>
- </template>
- <script>
- // pages/warmMap/warnMap.js
- const config = require('../../common/config.js');
- const common = require('../../common/common.js');
- var storage = require('../../common/storage.js');
- var QQMapWX = require('../../libs/qqmap-wx-jssdk.js');
- var qqmapsdk;
- export default {
- data() {
- return {
- alarmInfo: {
- longitude: '',
- latitude: ''
- },
- marker: []
- };
- }
- /**
- * 生命周期函数--监听页面加载
- */,
- onLoad: function (options) {
- const index = options.index;
- this.readyAlarmInfo();
- },
- methods: {
- readyAlarmInfo() {
- const me = this;
- // 实例化API核心类
- qqmapsdk = new QQMapWX({
- key: config.QQ_MAP_KEY
- });
- const thisAlarm = storage.getAlarmInfo();
- console.log(thisAlarm);
- qqmapsdk.reverseGeocoder({
- location: {
- latitude: thisAlarm.latitude,
- longitude: thisAlarm.longitude
- },
- success: function (res) {
- console.log(res);
- const formatted_addresses = res.result.formatted_addresses;
- const address = res.result.address; //+ formatted_addresses.recommend
- let ps = '';
- let tmp_addr = '地址: ' + address;
- while (tmp_addr.length > 15) {
- ps += tmp_addr.substring(0, 15) + '\n';
- tmp_addr = tmp_addr.substring(15);
- }
- ps += tmp_addr;
- const content =
- '名称: ' +
- thisAlarm.macid +
- '\n状态: ' +
- thisAlarm.alarm_desc +
- '\n信号: ' +
- common.formatTime(thisAlarm.gps_time) +
- '\n时间: ' +
- common.formatTime(thisAlarm.send_time) +
- '\n' +
- ps;
- me.setData({
- alarmInfo: thisAlarm,
- marker: [
- {
- id: 1,
- latitude: thisAlarm.latitude,
- longitude: thisAlarm.longitude,
- name: '',
- iconPath: '/static/resource/images/qidian.png',
- width: 35,
- height: 35,
- callout: {
- content: content,
- padding: 10,
- borderRadius: 4,
- boxShadow: '4px 8px 16px 0 rgba(0,0,0,0.3)',
- display: 'ALWAYS'
- }
- }
- ]
- });
- }
- });
- console.log(this.alarmInfo);
- },
- bindMarkertap() {
- console.log('占位:函数 bindMarkertap 未声明');
- },
- bindTapMap() {
- console.log('占位:函数 bindTapMap 未声明');
- }
- }
- };
- </script>
- <style>
- @import './warnMap.css';
- </style>
|