vue2接入高德地图API实现搜索定位和点击获取经纬度及地址功能

目录

一、申请密钥

二、安装element-ui

三、安装高德地图依赖

四、完整代码

五、运行截图


一、申请密钥

登录高德开放平台,点击我的应用,先添加新应用,然后再添加Key。

如图所示填写对应的信息,系统就会自动生成。

二、安装element-ui

没安装的看官方文档:Element - The world's most popular Vue UI framework

三、安装高德地图依赖

npm i @amap/amap-jsapi-loader --save

四、完整代码

把刚才申请好的安全密钥和Key替换进去。

完整代码:

<template>
  <div style="display: flex">
    <div style="margin-top: 10px">
      <div>
        <span>搜索地址:</span>
        <el-autocomplete
            v-model="keywords"
            style="width: 300px"
            :fetch-suggestions="querySearchAsync"
            placeholder="请输入内容"
            @select="handleSelect"
        ></el-autocomplete>
        <span style="margin-left: 10px">
          <span>经度:{{ form.lng }}</span>
          <span style="margin-left: 10px">纬度:{{ form.lat }}</span>
          <span>地址:{{form.address}}</span>
        </span>
        <el-button style="margin-left: 10px" type="danger" size="small" @click="reset">清空</el-button>
      </div>
      <div id="container" class="container"></div>
    </div>
  </div>
</template>

<script>
import AMapLoader from "@amap/amap-jsapi-loader";
window._AMapSecurityConfig = {
  // 安全密钥
  securityJsCode: "安全密钥",
};
export default {
  name: "HomeView",
  data() {
    return {
      // 地图实例
      map: null,
      // 标记点
      marker: "",
      // 地址逆解析
      geoCoder: null,
      // 搜索提示
      AutoComplete: null,
      //缩放控件
      ToolBar:null,
      //地图放大镜
      HawkEye:null,
      // 搜索关键字
      keywords: "",
      // 位置信息
      form: {
        lng: "119.793098",
        lat: "31.91243",
        address:'',
      },
      // 搜索节流阀
      loading: false,
      // 搜索提示信息
      options: [],
    };
  },
  created() {
    this.initMap();
  },
  methods: {
    reset(){
      this.keywords = '';
      this.form = {
        lng: "119.793098",
        lat: "31.91243",
        address: '',
      }
      // 清除点
      this.removeMarker();
      // 标记点
      this.setMapMarker();
    },
    initMap() {
      AMapLoader.load({
        // 你申请的Key
        key: "Key",
        version: "2.0",
        // 需要用到的插件
        plugins: ["AMap.Geocoder", "AMap.AutoComplete","AMap.ToolBar","AMap.HawkEye"],
      })
          .then((AMap) => {
            this.map = new AMap.Map("container", {
              viewMode: "3D", //是否为3D地图模式
              zoom: 23, //初始化地图级别
              center: [this.form.lng, this.form.lat], //初始化地图中心点位置
            });
            //地址逆解析插件
            this.geoCoder = new AMap.Geocoder({
              city: "010", //城市设为北京,默认:“全国”
              radius: 1000, //范围,默认:500
            });
            // 搜索提示插件
            this.AutoComplete = new AMap.AutoComplete({ city: "全国" });
            this.ToolBar =  new AMap.ToolBar({
              position: {
                bottom: '210px',
                right: '35px'
              }
            });
            this.HawkEye =  new AMap.HawkEye({
              position: {
                bottom: '110px',
                left: '35px'
              }
            });
            this.map.addControl(this.ToolBar);
            this.map.addControl(this.HawkEye);
            // 清除点
            this.removeMarker();
            // 标记点
            this.setMapMarker();
            //点击获取经纬度;
            this.map.on("click", (e) => {
              // 获取经纬度
              this.form.lng = e.lnglat.lng;
              this.form.lat = e.lnglat.lat;
              // 清除点
              this.removeMarker();
              // 标记点
              this.setMapMarker();
            });
          })
          .catch((err) => {
            // 错误
          });
    },
    // 标记点
    setMapMarker() {
      // 自动适应显示想显示的范围区域
      this.map.setFitView();
      this.marker = new AMap.Marker({
        map: this.map,
        position: [this.form.lng, this.form.lat],
      });
      // 逆解析地址
      this.toGeoCoder();
      this.map.setFitView();
      this.map.add(this.marker);
    },
    // 清除点
    removeMarker() {
      if (this.marker) {
        this.map.remove(this.marker);
      }
    },
    // 逆解析地址
    toGeoCoder() {
      let lnglat = [this.form.lng, this.form.lat];
      this.geoCoder.getAddress(lnglat, (status, result) => {
        if (status === "complete") {
          this.form.address = result.regeocode.formattedAddress;
        }else {
          this.form.address = '';
        }
      });
    },
    querySearchAsync(queryString, cb){
      if (queryString) {
        this.AutoComplete.search(queryString, (status, result) => {
          if(status === 'complete'){
            this.options = result.tips;
            for (let i = 0; i < this.options.length; i++) {
              this.options[i].value = this.options[i].name;
            }
          }else {
            this.options = [];
          }
          cb(this.options);
        });
      } else {
        this.options = [];
        cb(this.options);
      }
    },
    handleSelect(val){
      // 清空时不执行后面代码
      if (!val) {
        return;
      }
      this.form = {
        lng: val.location.lng,
        lat: val.location.lat,
      };
      // 清除点
      this.removeMarker();
      // 标记点
      this.setMapMarker();
    },
  },
  mounted() {
  },
};
</script>

<style>
.container {
  margin-top: 10px;
  width: 1280px;
  height: 720px;
}
</style>

五、运行截图

直接运行项目,效果如下:

更多用法请参考官方文档:添加地图控件-入门教程-地图 JS API 2.0 | 高德地图API

UniApp 是一套基于 Vue 的跨平台框架,它允许开发者编写一次代码,运行在多种设备上,包括网页、App 小程序。要在 UniApp 中结合 Vue 实现高德地图的选择起点终点路线规划,你可以按照以下步骤操作: 1. **安装依赖**:首先需要引入高德地图的 SDK,可以在项目中通过 `npm` 或者 `yarn` 安装 `@dcloudio/uni-map` 包。 ```bash npm install @dcloudio/uni-map ``` 2. **注册组件**:在 Vue 组件中注册 `AMapMap` 组件,并配置所需的 API key,确保已经在高德地图开放平台上申请了密钥。 3. **初始化地图**:在组件的 mounted 钩子函数中初始化地图实例,并设置初始视图。 4. **添加事件监听**:添加点击事件监听,当用户点击地图上某个位置时,获取经纬度信息作为新的点。 5. **实现选择开始点终点**: - 创建两个输入框让用户输入地址,可以使用第三方库如 `vue-amap-address` 来快速集成高德地址搜索。 - 用户输入地址后,可通过调用高德地图的 `searchAddress` 函数获取经纬度坐标。 6. **路径规划**:使用 `AMap.Autocomplete` 提供的路径规划服务,比如 `get驾车路线` 或 `get步行路线`,传入起点终点坐标以及相关的参数。 7. **展示结果**:将规划出的路线信息显示在界面上,可能包括路线图、距离时间预估。 ```html <template> <view> <amap-map :center="mapCenter" :zoom="zoomLevel"> <amap-marker v-model="marker" :position="markerPosition" @click="onMarkerClick"></amap-marker> <!-- 地址搜索输入框 --> <amap-search></amap-search> <input type="text" v-model="startAddress" placeholder="请输入起始地址" /> <input type="text" v-model="endAddress" placeholder="请输入结束地址" /> <!-- 路线结果显示区 --> <div v-if="routeResult">{{ routeResult }}</div> </amap-map> </view> </template> <script> import { AMap, AMapAutocomplete } from '@dcloudio/uni-map' export default { components: { AMap, AMapMarker, AMapSearch }, data() { return { mapCenter: [116.404, 39.915], // 北京中心点 zoomLevel: 12, marker: null, markerPosition: null, startAddress: '', endAddress: '', routeResult: '' } }, methods: { onMarkerClick(e) { this.markerPosition = e.point; }, searchAndPlanRoute(start, end) { const geocoder = new AMap.Geocoder(); geocoder.getAddress(start, (status, result) => { if (status === 'complete' && result.info === 'OK') { this.startAddress = result.regeocode.formattedAddress; const startCoord = result.regeocode.location; // 使用地址反地理编码后的经纬度进行路径规划 planRoute(startCoord.lng, startCoord.lat, end); } }); function planRoute(startLat, startLng, end) { // 使用高德提供的路径规划API,这里仅作示例,实际应用需要替换为官方文档中的相应方法 AMap.Autocomplete.getPath(startLat, startLng, end, (result) => { this.routeResult = `起点:${this.startAddress}\n终点:${end}\n路线:${result.routes}`; }); } } }, watch: { startAddress(newStart, oldStart) { if (newStart !== '') { this.searchAndPlanRoute(this.startAddress, this.endAddress); } }, endAddress(newEnd, oldEnd) { if (newEnd !== '') { this.searchAndPlanRoute(this.startAddress, this.endAddress); } } } } </script> ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

黄团团

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值