forked from opentiny/tiny-vue
42 lines
850 B
Vue
42 lines
850 B
Vue
<template>
|
||
<div>
|
||
<tiny-autonavi-map :options="options"></tiny-autonavi-map>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="jsx">
|
||
import { AutonaviMap } from '@opentiny/vue'
|
||
|
||
export default {
|
||
components: {
|
||
TinyAutonaviMap: AutonaviMap
|
||
},
|
||
data() {
|
||
return {
|
||
options: {
|
||
key: '4b5f2cf2cba25200cc6b68c398468899',
|
||
url: 'https://webapi.amap.com/maps', // 高德地图接口的url地址
|
||
v: '1.4.3',
|
||
amap: {
|
||
resizeEnable: true,
|
||
center: [120.14322240845, 30.236064370321],
|
||
zoom: 10
|
||
},
|
||
tooltip: {
|
||
show: true
|
||
},
|
||
series: [
|
||
{
|
||
type: 'scatter',
|
||
coordinateSystem: 'bmap',
|
||
data: [
|
||
[120, 30, 1] // 经度,纬度,value...
|
||
]
|
||
}
|
||
]
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|