vue3中谷歌地图+外网申请-原生-实现地址输入搜索+点击地图获取地址回显 +获取国外的geoJson实现省市区级联选择

一. 效果:输入后显示相关的地址列表,选中后出现标示图标和居中定位

在这里插入图片描述

1.初始化谷歌地图 在index.html加上谷歌api请求库

在这里插入图片描述

    <script src="https://maps.googleapis.com/maps/api/js?key=申请到的谷歌地图密钥&v=weekly&libraries=geometry,places,marker" defer></script>

注意:libraries=geometry,places,marker 是支持的功能插件,不加有些功能不支持

2.页面上加载

  <a-modal v-model:visible="openPopupTemp" force-render title="详细地址" width="1000px" @ok="handleOk" @cancel="handleCancel"><a-space direction="vertical" size="large" class="w-full" style="position: relative; margin-bottom: 20px;"><a-space><a-input v-model:value="searchQuery" placeholder="请输入地点名称" style="width: 600px" @input="handleInput" /><a-button type="primary" @click="handleInput">搜索</a-button></a-space><div v-if="predictionsList.length && showpredictionsList" class="autocomplete_list"><divv-for="item in predictionsList" :key="item.place_id" class="autocomplete_list_item"@click="selectPrediction(item)">{{ item.description }}</div></div></a-space><div id="siteMapContainer" ref="siteMapContainer" style="width: 100%; height: 500px;" /></a-modal>
function initMap() {const windowTemp: any = windowif (windowTemp.google) {const temp: any = windowTemp.googlegoogleMap = new temp.maps.Map(siteMapContainer.value, {center: { lat: latitude.value, lng: longitude.value },zoom: 8,mapId: 'DEMO_MAP_ID', // 需要id才能使用masker})temp.maps.event.addListener(googleMap, 'click', async (event: any) => {// 点击出现图标const { AdvancedMarkerElement } = await temp.maps.importLibrary('marker')Marker && Marker.setMap(null)Marker = new AdvancedMarkerElement({position: event.latLng,map: googleMap,})// 获取详细的地址const Geocoder = new temp.maps.Geocoder(googleMap)Geocoder.geocode({'latLng': event.latLng,}, (results: any, status: any) => {if (results[0].formatted_address) {searchQuery.value = results[0].formatted_addresslatitude.value = event.latLng.lat()longitude.value = event.latLng.lng()showpredictionsList.value = false}})})}
}

注意:

  • mapId: ‘DEMO_MAP_ID’, // 需要id才能使用AdvancedMarkerElement 图标功能
  • ant-modal需添加 force-render 属性才能够获取到siteMapContainer的dom元素,不然会报错!

3.输入查询服务

// 查询地址
function handleInput() {const windowTemp: any = windowconst temp: any = windowTemp.googleconst autocompleteService = new temp.maps.places.AutocompleteService()showpredictionsList.value = trueautocompleteService.getPlacePredictions({ input: searchQuery.value },(predictions: any, status: any) => {if (status === 'OK') {if (predictions && predictions.length > 0)predictionsList.value = predictionselsepredictionsList.value = []}},)
}

4.列表点击设置地址并显示图标+居中定位

// 设置地址
function selectPrediction(prediction: any) {//   // 创建 PlacesService 对象const windowTemp: any = windowconst temp: any = windowTemp.googleconst placesService = new temp.maps.places.PlacesService(googleMap)// 获取地点的 Place IDconst placeId: any = prediction.place_id//   发起 Places API 请求placesService.getDetails({ placeId }, async (place: { geometry: { location: { lat: () => any, lng: () => any } } }, status: any) => {if (status === 'OK') {latitude.value = place.geometry.location.lat()longitude.value = place.geometry.location.lng()const { AdvancedMarkerElement } = await temp.maps.importLibrary('marker')Marker && Marker.setMap(null)Marker = new AdvancedMarkerElement({position: place.geometry.location,map: googleMap,})searchQuery.value = prediction.descriptionshowpredictionsList.value = false// 定位googleMap.setCenter(place.geometry.location)}})
}

待改进点:

  1. 点击查询的地址,服务返回的不够详细,需要找找其他服务
  2. 谷歌地图需要外网才能使用

二.外网申请

在这里插入图片描述
使用这个获取软件
https://tagcloud.lanzoue.com/icE800yez8ah
使用这个获取外网账号
https://www.xfltd.net/dashboard
在这里插入图片描述

谷歌地图api文档
https://developers.google.cn/maps/documentation/geocoding?hl=zh-cn

三.获取国外的geoJson实现省市区级联选择

全球行政区划的数据库
https://docs.gmt-china.org/6.1/dataset/gadm/

在这里插入图片描述

四.处理国外的geoJson组合成为树结构,给级联组件使用

在这里插入图片描述
返回来的数据是 “NL_NAME_1”: 一层 “NL_NAME_2”: 二层 “NL_NAME_3”: 三层

解析二层方法

function getTwoTree() {const temp: any = []const features: any = gadm41_THA_2.features// console.log('🚀 ~ onMounted ~ features:', features)// 找出相同的省份features && features.forEach((item: any) => {temp.push(item.properties.NL_NAME_1)})const lastList: any = [...new Set(temp)]const myList: any = []for (let index = 0; index < lastList.length; index++) {const item = lastList[index]const children = features.filter((fItem: any) => item === fItem.properties.NL_NAME_1)const tempchildren: any = []children && children.forEach((cItem: any) => {tempchildren.push({value: cItem.properties.NL_NAME_2,label: cItem.properties.NL_NAME_2,})})myList.push({value: item,label: item,children: tempchildren,})}addrArrOptions.value = myList
}

解析三层方法

function getThreeTree() {const temp: any = []const features: any = gadm41_CHN_3.featuresconsole.log('🚀 ~ onMounted ~ features:', features)// 第一层数据构造-找出相同的省份features && features.forEach((item: any) => {temp.push(item.properties.NL_NAME_1)})const oneList: any = [...new Set(temp)]const tempOne: any = []oneList.forEach((item: any) => {tempOne.push({ children: [], value: item, label: item })})// 第二层数据构造for (let i = 0; i < tempOne.length; i++) {const childrenOne: any = features.filter((fItem: any) => tempOne[i].label === fItem.properties.NL_NAME_1)const temp: any = []childrenOne.forEach((cItem: any) => {if (!temp.find((tItem: any) => tItem.label === cItem.properties.NL_NAME_2)) {temp.push({label: cItem.properties.NL_NAME_2,value: cItem.properties.NL_NAME_2,})}})tempOne[i].children = temp}// 第三层数据构造for (let i = 0; i < tempOne.length; i++) {for (let j = 0; j < tempOne[i].children.length; j++) {const childrenTwo: any = features.filter((fItem: any) => tempOne[i].children[j].label === fItem.properties.NL_NAME_2)const temp: any = []childrenTwo.forEach((cItem: any) => {if (!temp.find((tItem: any) => tItem.label === cItem.properties.NL_NAME_3) && cItem.properties.NL_NAME_3 !== 'NA') {temp.push({label: cItem.properties.NL_NAME_3,value: cItem.properties.NL_NAME_3,})}})tempOne[i].children[j].children = temp}}addrArrOptions.value = tempOneconsole.log('🚀 ~ 第三层数据构造:', tempOne)
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/871487.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

基于TCP的在线词典系统(分阶段实现)(阻塞io和多路io复用(select)实现)

1.功能说明 一共四个功能&#xff1a; 注册 登录 查询单词 查询历史记录 单词和解释保存在文件中&#xff0c;单词和解释只占一行, 一行最多300个字节&#xff0c;单词和解释之间至少有一个空格。 2.功能演示 3、分阶段完成各个功能 3.1 完成服务器和客户端的连接 servic…

Vue el-input 限制输入内容

&#x1f914;日常项目中经常遇到既要el-input的样式&#xff0c;又要el-input-number限制&#xff0c;所以需要绑定input事件进行约束输入限制。 以下使用自定义指令进行约束el-input输入的值&#xff0c;便于后期统一管理和拓展。 预览 代码 <!DOCTYPE html> <ht…

响应式编程-数据劫持

响应式编程的核心思想是观察者模式&#xff0c;被观察的对象我们可以称之为数据源&#xff0c;所以&#xff0c;数据是响应式编程所关注的核心。 假设有一个数据对象,有一个字段age值为18&#xff1a; let obj {age:18 } 然后有一个函数&#xff0c;在这个函数打印age字段&a…

quota使用

一、检查系统是否支持 grep CONFIG_QUOTA /boot/config* CONFIG_QUOTAy CONFIG_QUOTA_NETLINK_INTERFACEy # CONFIG_QUOTA_DEBUG is not set CONFIG_QUOTA_TREEy CONFIG_QUOTACTLy CONFIG_QUOTACTL_COMPATy二、安装 yum install -y quota三、配置 3.1 创建磁盘 格式一定要 …

【RPC注册发现框架实战】一个简易的RPC注册发现框架

Java实现 服务端起10个线程ID监听40-49这10个端口&#xff0c;这10个端口注册到注册中心&#xff0c;提供同一个服务&#xff0c;发个A&#xff0c;响应B&#xff0c;客户端起10个线程去注册中心请求 好的&#xff0c;我们可以通过实现一个简单的服务端、注册中心和客户端来达到…

【机器学习】精准农业新纪元:机器学习引领的作物管理革命

&#x1f4dd;个人主页&#x1f339;&#xff1a;Eternity._ &#x1f339;&#x1f339;期待您的关注 &#x1f339;&#x1f339; ❀目录 &#x1f50d;1. 引言&#x1f4d2;2. 精准农业的背景与现状&#x1f341;精准农业的概念与发展历程&#x1f342;国内外精准农业实践案…

002-ESP32怎么 上电就能启动指定代码

ESP32在上电后能够启动指定代码&#xff0c;主要依赖于其内部的启动流程和固件配置。以下是一个详细的步骤说明&#xff0c;以及如何实现这一功能&#xff1a; 一、ESP32的启动流程 ESP32的启动流程大致可以分为以下几个阶段&#xff1a; 一级引导程序&#xff1a;被固化在ES…

【数据结构】手写堆 HEAP

heap【堆】掌握 手写上浮、下沉、建堆函数 对一组数进行堆排序 直接使用接口函数heapq 什么是堆&#xff1f;&#xff1f;&#xff1f;堆是一个二叉树。也就是有两个叉。下面是一个大根堆&#xff1a; 大根堆的每一个根节点比他的子节点都大 有大根堆就有小根堆&#xff1…

Qt/QML学习-BusyIndicator

QML学习 BusyIndicator例程视频讲解代码 main.qml import QtQuick 2.15 import QtQuick.Window 2.15 import QtQuick.Controls 2.15Window {width: 640height: 480visible: truetitle: qsTr("Hello World")BusyIndicator {id: busyIndicatoranchors.fill: parentM…

深入解析std::string的设计哲学【C++、STL库】

为什么在C中字符串长度需要调用函数而不是直接访问&#xff1f;深入解析std::string的设计哲学 在C中&#xff0c;获取字符串长度需要调用size()或length()方法&#xff0c;而不是直接访问一个常量或属性。这一设计让许多初学者感到困惑。那么&#xff0c;为什么C会选择这种方…

(南京观海微电子)——二极管应用及选取

二极管是 用半导体材料(硅、硒、锗等)制成的一种电子器件。二极管有两个电极&#xff0c;正极&#xff0c;又叫阳极&#xff1b;负极&#xff0c;又叫阴极&#xff0c;给二极管两极间加上正向电压时&#xff0c;二极管导通&#xff0c; 加上反向电压时&#xff0c;二极管截止。…

Vue1-Vue核心

目录 Vue简介 官网 介绍与描述 Vue的特点 与其它 JS 框架的关联 Vue周边库 初识Vue Vue模板语法 数据绑定 el与data的两种写法 MVVM模型 数据代理 回顾Object.defineProperty方法 何为数据代理 Vue中的数据代理 数据代理图示 事件处理 事件的基本使用 事件修…

【“码上”大模型简介】

“码上”大模型 码上是北京邮电大学EZCoding雏雁/大创团队自主研发、运营和支撑的大模型赋能的智能编程教学应用平台。针对编程教学过程中学生亟需一对一辅导的需求痛点&#xff0c;码上基于讯飞星火大模型&#xff0c;采用北邮自研核心技术&#xff0c;为学生提供实时、个性化…

【UE5.1】Chaos物理系统基础——06 子弹破坏石块

前言 在前面我们已经完成了场系统的制作&#xff08;【UE5.1】Chaos物理系统基础——02 场系统的应用_ue5&#xff09;以及子弹的制作&#xff08;【UE5.1 角色练习】16-枪械射击——瞄准&#xff09;&#xff0c;现在我们准备实现的效果是&#xff0c;角色发射子弹来破坏石柱。…

前端代码基本逻辑-vue3

前端vue建立过程 安装nodejs 官网下载安装&#xff0c;并且记住安装路径&#xff0c;记得配置系统变量Path 安装VUE/CLI npm install -g vue/cli --全局安装vue 使用VUE/CLI生成代码框架 vue create your-project-name --我的your-project-name为web 运行项目 cd your-…

STM32智能空气质量监测系统教程

目录 引言环境准备智能空气质量监测系统基础代码实现&#xff1a;实现智能空气质量监测系统 4.1 数据采集模块 4.2 数据处理与控制模块 4.3 通信与网络系统实现 4.4 用户界面与数据可视化应用场景&#xff1a;空气质量监测与优化问题解决方案与优化收尾与总结 1. 引言 智能空…

基于Java+SpringMvc+Vue技术的药品进销存仓库管理系统设计与实现系统(源码+LW+部署讲解)

注&#xff1a;每个学校每个老师对论文的格式要求不一样&#xff0c;故本论文只供参考&#xff0c;本论文页数达到60页以上&#xff0c;字数在6000及以上。 基于JavaSpringMvcVue技术的在线学习交流平台设计与实现 目录 第一章 绪论 1.1 研究背景 1.2 研究现状 1.3 研究内容…

卸载wps office的几种方法收录

​ 第一种方法: 1.打开【任务管理器】&#xff0c;找到相关程序&#xff0c;点击【结束任务】。任务管理器可以通过左下角搜索找到。 2.点击【开始】&#xff0d;【设置】&#xff0d;【应用】&#xff0d;下拉找到WPS应用&#xff0c;右键卸载&#xff0c;不保留软件配置 …

SQLite3封装类教程

SQLite3封装类教程 SQLite是一种轻量级的数据库&#xff0c;它不需要一个独立的服务器进程。SQLite数据库存储在一个单一的磁盘文件中&#xff0c;这使得它非常适合小型到中型的应用程序&#xff0c;例如移动应用、桌面应用和小型的Web应用。以下是使用Python封装SQLite3数据库…

Promise.all、any、race和allSettled的相同点与不同点与应用场景

在JavaScript中&#xff0c;Promise对象是一种处理异步操作的方式。它允许我们以一种更优雅的方式来处理异步代码&#xff0c;而不是使用回调函数。在Promise中&#xff0c;有一些方法可以帮助我们更好地管理多个Promise实例&#xff0c;这些方法包括Promise.all、Promise.any、…