location.vue
2.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<template>
<div id="container" style="width:600px;height:500px;"></div>
</template>
<script>
export default {
name: 'news',
data () {
return {
longitude: 0, // 经度
latitude: 0, // 纬度
city: ''
}
},
methods: {
// 第一部分
// 定位获得当前位置信息
getMyLocation () {
var geolocation = new qq.maps.Geolocation('5YYBZ-WA266-U53SM-E3YJY-YZP7Z-IXBSB', 'yourkey')
// geolocation.getIpLocation(this.showPosition, this.showErr);
geolocation.getLocation(this.showPosition, this.showErr)// 或者用getLocation精确度比较高
},
showPosition (position) {
console.log(position)
this.$toast({ message: JSON.stringify(position), duration: 100000 })
this.latitude = position.lat
this.longitude = position.lng
this.city = position.addr
this.setMap()
},
showErr () {
console.log('定位失败')
this.$toast({ message: '定位失败', duration: 1000 })
this.getMyLocation() // 定位失败再请求定位,测试使用
},
// 第二部分
// 位置信息在地图上展示
setMap () {
// 步骤:定义map变量 调用 qq.maps.Map() 构造函数 获取地图显示容器
// 设置地图中心点
var myLatlng = new qq.maps.LatLng(this.latitude, this.longitude)
// 定义工厂模式函数
var myOptions = {
zoom: 13, // 设置地图缩放级别
center: myLatlng, // 设置中心点样式
mapTypeId: qq.maps.MapTypeId.ROADMAP // 设置地图样式详情参见MapType
}
// //获取dom元素添加地图信息
var map = new qq.maps.Map(document.getElementById('container'), myOptions)
// 第三部分
// 给定位的位置添加图片标注
var marker = new qq.maps.Marker({
position: myLatlng,
map: map
})
// 给定位的位置添加文本标注
var marker = new qq.maps.Label({
position: myLatlng,
map: map
})
}
},
mounted () {
this.getMyLocation()
}
}
</script>