npm 安裝
推薦 npm 安裝。
npm install vue-amap --save
import VueAMap from 'vue-amap';
Vue.use(VueAMap);
VueAMap.initAMapApiLoader({
? key: 'your amap key',
? plugin: ['AMap.Autocomplete', 'AMap.PlaceSearch', 'AMap.Scale', 'AMap.OverView', 'AMap.ToolBar', 'AMap.MapType', 'AMap.PolyEditor', 'AMap.CircleEditor'],
? // 默認高德 sdk 版本為 1.4.4
? v: '1.4.4'
});
后面按照文檔調(diào)用就好
<!-- 地圖 -->
? ? ? ? ? ? <div class="dt">
? ? ? ? ? ? ? ? <div class="amap-page-container">
? ? ? ? ? ? ? ? ? ? <el-amap vid="amap" :plugin="plugin" class="amap-demo" :center="center" :zoom="zoom" :events="events">
? ? ? ? ? ? ? ? ? ? <!-- 點擊顯示標記 -->
? ? ? ? ? ? ? ? ? ? ? ? <el-amap-marker v-for="(marker, index) in markers" :key="marker.index" :position="marker.position" :icon="marker.icon" :title="marker.title" :events="marker.events" :visible="marker.visible" :draggable="marker.draggable" :vid="index"></el-amap-marker>
? ? ? ? ? ? ? ? ? ? ? ? <!-- 顯示的圓覆蓋圈 -->
? ? ? ? ? ? ? ? ? ? ? ? <el-amap-circle v-for="circle in circles" :key="circle.index"? fillColor='#dae6f0' strokeOpacity='0' strokeColor='#000' :center="circle.center" :radius="circle.radius" :fill-opacity="circle.fillOpacity" :events="circle.events"></el-amap-circle>
? ? ? ? ? ? ? ? ? ? </el-amap>
? ? ? ? ? ? ? ? ? ? <!-- <div class="toolbar">
? ? ? ? ? ? ? ? ? ? ? ? position: [{{ lng }}, {{ lat }}] address: {{ address }}
? ? ? ? ? ? ? ? ? ? </div> -->
? ? ? ? ? ? ? ? </div>
? ? ? ? ? ? </div>
vue里data? return的數(shù)據(jù)
// 地圖插件
? ? ? ? ? ? ? ? qaqqq:[],
? ? ? ? ? ? ? ? address: '',
? ? ? ? ? ? ? ? // 地圖縮放
? ? ? ? ? ? ? ? zoom:14,
? ? ? ? ? ? ? ? // 初始中心
? ? ? ? ? ? ? ? center: [114.406539, 30.492921],
? ? ? ? ? ? ? ? lng: 0,
? ? ? ? ? ? ? ? lat: 0,
? ? ? ? ? ? ? ? loaded: false,
? ? ? ? ? ? ? ? // 點擊顯示的標記默認的定位
? ? ? ? ? ? ? ? markers: [{
? ? ? ? ? ? ? ? ? ? ? ? position:[114.406539, 30.492921]
? ? ? ? ? ? ? ? ? ? }],
? ? ? ? ? ? ? ? // 圓覆蓋圈
? ? ? ? ? ? ? ? circles: [
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? center: [114.406539, 30.492921],
? ? ? ? ? ? ? ? ? ? radius: 100,
? ? ? ? ? ? ? ? ? ? fillOpacity: 0.5,
? ? ? ? ? ? ? ? ? ? events: {
? ? ? ? ? ? ? ? ? ? ? ? click: () => {
? ? ? ? ? ? ? ? ? ? ? ? // alert('click');
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ],
? ? ? ? ? ? ? ? //? 定位
? ? ? ? ? ? ? ? plugin: [{
? ? ? ? ? ? ? ? ? ? pName: 'Geolocation',
? ? ? ? ? ? ? ? ? ? events: {
? ? ? ? ? ? ? ? ? ? click(e){
? ? ? ? ? ? ? ? ? ? ? ? // alert(1)
? ? ? ? ? ? ? ? ? ? },
? ? ? ? ? ? ? ? ? ? init(o) {
? ? ? ? ? ? ? ? ? ? ? ? // o 是高德地圖定位插件實例
? ? ? ? ? ? ? ? ? ? ? ? o.getCurrentPosition((status, result) => {
? ? ? ? ? ? ? ? ? ? ? ? if (result && result.position) {
? ? ? ? ? ? ? ? ? ? ? ? ? ? self.lng = result.position.lng;
? ? ? ? ? ? ? ? ? ? ? ? ? ? self.lat = result.position.lat;
? ? ? ? ? ? ? ? ? ? ? ? ? ? // 初始定位地圖中心位置
? ? ? ? ? ? ? ? ? ? ? ? ? ? self.center = [self.lng, self.lat];
? ? ? ? ? ? ? ? ? ? ? ? ? ? // 初始定位圓的位置
? ? ? ? ? ? ? ? ? ? ? ? ? ? self.circles[0].center = [self.lng, self.lat]
? ? ? ? ? ? ? ? ? ? ? ? ? ? // 初始定位標記的位置
? ? ? ? ? ? ? ? ? ? ? ? ? ? self.markers[0].position = [self.lng, self.lat]
? ? ? ? ? ? ? ? ? ? ? ? ? ? console.log(self.circles[0].center)
? ? ? ? ? ? ? ? ? ? ? ? ? ? console.log(self.center)
? ? ? ? ? ? ? ? ? ? ? ? ? ? self.loaded = true;
? ? ? ? ? ? ? ? ? ? ? ? ? ? // 這里通過高德 SDK 完成。
? ? ? ? ? ? ? ? ? ? ? ? ? ? var geocoder = new AMap.Geocoder({
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? radius: 1000,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? extensions: "all"
? ? ? ? ? ? ? ? ? ? ? ? ? ? });?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? geocoder.getAddress([self.lng ,self.lat], function(status, result) {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? if (status === 'complete' && result.info === 'OK') {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? if (result && result.regeocode) {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? self.address = result.regeocode.formattedAddress;
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? self.$nextTick();
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? ? ? ? ? });
? ? ? ? ? ? ? ? ? ? ? ? ? ? self.$nextTick();
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? ? ? });
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }],
? ? ? ? ? ? ? ? // 點擊顯示標記
? ? ? ? ? ? ? ? events: {
? ? ? ? ? ? ? ? ? ? click(e) {
? ? ? ? ? ? ? ? ? ? // alert(1)
? ? ? ? ? ? ? ? ? ? ? ? console.log(e)
? ? ? ? ? ? ? ? ? ? let { lng, lat } = e.lnglat;
? ? ? ? ? ? ? ? ? ? self.lng = lng;
? ? ? ? ? ? ? ? ? ? self.lat = lat;
? ? ? ? ? ? ? ? ? ? // 點擊顯示標記后顯示圓的覆蓋圈
? ? ? ? ? ? ? ? ? ? self.$nextTick(()=>{
? ? ? ? ? ? ? ? ? ? ? ? ? ? console.log(self.circles[0].center)
? ? ? ? ? ? ? ? ? ? ? ? ? ? self.circles[0].center.shift()
? ? ? ? ? ? ? ? ? ? ? ? ? ? self.circles[0].center.pop()
? ? ? ? ? ? ? ? ? ? ? ? ? ? self.circles[0].center.push(self.lng)
? ? ? ? ? ? ? ? ? ? ? ? ? ? self.circles[0].center.push(self.lat)
? ? ? ? ? ? ? ? ? ? ? ? ? ? // self.circles[0].center[0] = self.lng
? ? ? ? ? ? ? ? ? ? ? ? ? ? // self.circles[0].center[1] = self.lat
? ? ? ? ? ? ? ? ? ? ? ? ? ? console.log(self.circles[0].center)
? ? ? ? ? ? ? ? ? ? ? ? ? ? self.qaqqq.push('a')
? ? ? ? ? ? ? ? ? ? });
? ? ? ? ? ? ? ? ? ? self.markers = [{
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? position: [self.lng, self.lat],
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? icon: '',
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? title: '',
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? events: {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? click(o) {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? // console.log(o)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? ? ? ? ? }];
? ? ? ? ? ? ? ? ? ? // 這里通過高德 SDK 完成。
? ? ? ? ? ? ? ? ? ? var geocoder = new AMap.Geocoder({
? ? ? ? ? ? ? ? ? ? ? ? radius: 1000,
? ? ? ? ? ? ? ? ? ? ? ? extensions: "all"
? ? ? ? ? ? ? ? ? ? });? ? ? ?
? ? ? ? ? ? ? ? ? ? geocoder.getAddress([lng ,lat], function(status, result) {
? ? ? ? ? ? ? ? ? ? ? ? if (status === 'complete' && result.info === 'OK') {
? ? ? ? ? ? ? ? ? ? ? ? if (result && result.regeocode) {
? ? ? ? ? ? ? ? ? ? ? ? ? ? self.address = result.regeocode.formattedAddress;
? ? ? ? ? ? ? ? ? ? ? ? ? ? self.$nextTick();
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? });? ? ? ?
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? },
Geolocation
高德地圖的一個依賴配置? ? 定位插件
Geocoder
高德地圖的一個依賴配置? ? 地圖實例插件 獲取點擊的地方的經(jīng)緯度和具體地址