Map_gaode.vue
1.49 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
<!--
* @Author: jiangbotao
* @Date: 2019-12-18 00:23:47
* @LastEditors: jiangbotao
* @LastEditTime: 2019-12-18 00:25:21
* @FilePath: \supermapvue\src\components\layers\Map_mapbox.vue
-->
<template>
<div >
<div id="map"></div>
</div>
</template>
<script>
import $ from 'jquery';
import mapboxgl from 'mapbox-gl';
import { Logo, MapService } from '@supermap/iclient-mapboxgl';
export default {
name: 'Gaode',
data () {
return {
}
},
mounted(){
var map = new mapboxgl.Map({
container: 'map', // container id
style: {
"version": 8,
"sources": {
"raster-tiles": {
"type": "raster",
"tiles": ["http://webrd01.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=8&x={x}&y={y}&z={z}"],
"tileSize": 256
}
},
"layers": [{
"id": "simple-tiles",
"type": "raster",
"source": "raster-tiles",
"minzoom": 0,
"maxzoom": 22
}]
},
center: [116, 30], // starting position
zoom: 2 // starting zoom
});
map.addControl(new mapboxgl.NavigationControl(), 'top-left');
}
}
</script>
<style scoped>
#map {
position: absolute;
height: 100%;
width: 100%;
background-color: white
}
</style>