当前位置: 首页 > news >正文

佛山公司网站建设价格郑州网站建设哪里好

佛山公司网站建设价格,郑州网站建设哪里好,国际货代做网站,易企秀 旗下 网站建设在uniapp中实现地图距离计算可以借助第三方地图服务API来实现。以下是一种基本的实现方式: 注册地图服务API账号:你可以选择使用高德地图、百度地图等提供地图服务的厂商,注册一个开发者账号并获取API密钥。 安装相关插件或SDK:根…

在uniapp中实现地图距离计算可以借助第三方地图服务API来实现。以下是一种基本的实现方式:

  1. 注册地图服务API账号:你可以选择使用高德地图、百度地图等提供地图服务的厂商,注册一个开发者账号并获取API密钥。

  2. 安装相关插件或SDK:根据你选择的地图服务提供商,下载并安装相应的uniapp插件或SDK。例如,如果选择使用高德地图,可以安装uni-amap-map插件。

  3. 配置API密钥:在uniapp项目的配置文件(manifest.jsonvue.config.js)中,将你获取的API密钥配置进去,以便你的应用程序能够访问地图服务API。

  4. 创建地图组件:在uniapp的页面中创建一个地图组件,可以使用插件或SDK提供的相关组件进行创建。例如,在使用高德地图的情况下,可以使用<amap-map>标签创建地图组件。

  5. 获取坐标信息:在你的应用中,需要获取用户输入的起始位置和目标位置的经纬度坐标信息,可以通过表单、定位功能或手动输入等方式获取。

  6. 调用API计算距离:使用地图服务API提供的距离计算接口,传入起始位置和目标位置的经纬度坐标,调用API进行距离计算。例如,在使用高德地图的情况下,可以使用AMap.Distance类的getDistance()方法来计算距离。

  7. 显示结果:将距离计算结果显示在你的应用程序中,可以通过文本、弹窗等方式展示给用户。

这里我使用的是腾讯地图;腾讯地图实现上述功能在配置上的话会稍微复杂一点点;

首先需要配置下述代码

"permission": {"scope.userLocation": {"desc": "你的位置信息将用于小程序位置接口的效果展示"}}

首先需要再pages.json上配置;

 然后在manifest.json中的源码视图中配置

然后需要将你申请的key放入

 之后就可以在页面使用了;可以使用uniapp提供的api来进行自身位置的获取,首先使用getSetting来获取是否开启 定位权限;如果获取定位权限再根据getLocation获取自身位置的经纬度;然后根据自身定位与目标定位计算出距离

下面是计算代码

// 计算距离function getDistance(lat1, lon1, lat2, lon2) {const earthRadius = 6371; // 地球半径,单位为千米console.log(lat1, lon1, lat2, lon2);// 将经纬度转换为弧度const radLat1 = (Math.PI / 180) * lat1;const radLon1 = (Math.PI / 180) * lon1;const radLat2 = (Math.PI / 180) * lat2;const radLon2 = (Math.PI / 180) * lon2;console.log(radLat1,radLat2,radLon1,radLon2);// 计算经纬度的差值const deltaLat = radLat2 - radLat1;const deltaLon = radLon2 - radLon1;console.log(deltaLat,deltaLon);// 使用Haversine公式计算距离const a =Math.sin(deltaLat / 2) * Math.sin(deltaLat / 2) +Math.cos(radLat1) *Math.cos(radLat2) *Math.sin(deltaLon / 2) *Math.sin(deltaLon / 2);const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));const distance = earthRadius * c;return distance.toFixed(2); // 返回保留两位小数的距离值};

注意:距离为km;调用方法为getDistance(经度1,纬度1,经度2,纬度2),希望对您有所帮助

 

 


文章转载自:
http://dinncobackbite.ydfr.cn
http://dinncotaiwan.ydfr.cn
http://dinncoalcaide.ydfr.cn
http://dinncosurpassing.ydfr.cn
http://dinncomarriageable.ydfr.cn
http://dinncokebab.ydfr.cn
http://dinncodetractive.ydfr.cn
http://dinncohock.ydfr.cn
http://dinncocloudwards.ydfr.cn
http://dinncobarkentine.ydfr.cn
http://dinncoschlimazel.ydfr.cn
http://dinncofrequently.ydfr.cn
http://dinncoburb.ydfr.cn
http://dinncogi.ydfr.cn
http://dinncostopcock.ydfr.cn
http://dinncoapprenticeship.ydfr.cn
http://dinnconaturopathic.ydfr.cn
http://dinncochemosynthesis.ydfr.cn
http://dinncoincompliancy.ydfr.cn
http://dinncobedel.ydfr.cn
http://dinncopeoplehood.ydfr.cn
http://dinncooutrush.ydfr.cn
http://dinncomaladministration.ydfr.cn
http://dinncocreese.ydfr.cn
http://dinncoviremia.ydfr.cn
http://dinncocharacterisation.ydfr.cn
http://dinncoelectroplate.ydfr.cn
http://dinncomenophania.ydfr.cn
http://dinncoclou.ydfr.cn
http://dinncolms.ydfr.cn
http://dinncotriggerman.ydfr.cn
http://dinncoeblaite.ydfr.cn
http://dinncogastrocamera.ydfr.cn
http://dinncorecitation.ydfr.cn
http://dinncopiles.ydfr.cn
http://dinncocinnamonic.ydfr.cn
http://dinncobani.ydfr.cn
http://dinncomisanthropize.ydfr.cn
http://dinncopreserver.ydfr.cn
http://dinncoexhilaration.ydfr.cn
http://dinncorailroadiana.ydfr.cn
http://dinncohaleness.ydfr.cn
http://dinncoverapamil.ydfr.cn
http://dinncomacrospore.ydfr.cn
http://dinncodictator.ydfr.cn
http://dinncoinhaust.ydfr.cn
http://dinncounderbred.ydfr.cn
http://dinncoexperientialism.ydfr.cn
http://dinncodicotyledonous.ydfr.cn
http://dinncopercolator.ydfr.cn
http://dinncoradii.ydfr.cn
http://dinncoparatroops.ydfr.cn
http://dinncokennel.ydfr.cn
http://dinncononresistant.ydfr.cn
http://dinncomonger.ydfr.cn
http://dinncoarresting.ydfr.cn
http://dinncorallyingly.ydfr.cn
http://dinncogong.ydfr.cn
http://dinncocabrilla.ydfr.cn
http://dinncojitterbug.ydfr.cn
http://dinncoceremonially.ydfr.cn
http://dinncocristated.ydfr.cn
http://dinncoformidably.ydfr.cn
http://dinncoseedsman.ydfr.cn
http://dinncomenhaden.ydfr.cn
http://dinncoalign.ydfr.cn
http://dinncopolyarchy.ydfr.cn
http://dinncounsoiled.ydfr.cn
http://dinncohomoeologous.ydfr.cn
http://dinncoquingentenary.ydfr.cn
http://dinncorunnel.ydfr.cn
http://dinncothermalite.ydfr.cn
http://dinncofrankhearted.ydfr.cn
http://dinncoporphyroid.ydfr.cn
http://dinncooftentimes.ydfr.cn
http://dinncoagloat.ydfr.cn
http://dinncorac.ydfr.cn
http://dinncopyromaniac.ydfr.cn
http://dinncometalloenzyme.ydfr.cn
http://dinncospaetzle.ydfr.cn
http://dinncoparadoctor.ydfr.cn
http://dinncotallin.ydfr.cn
http://dinncodivider.ydfr.cn
http://dinncocherup.ydfr.cn
http://dinncotransition.ydfr.cn
http://dinncoindeliberate.ydfr.cn
http://dinncofurnaceman.ydfr.cn
http://dinncodecimalism.ydfr.cn
http://dinncogutturonasal.ydfr.cn
http://dinncotyrotoxicon.ydfr.cn
http://dinncoaudiometry.ydfr.cn
http://dinncojobber.ydfr.cn
http://dinncohemelytrum.ydfr.cn
http://dinncosceptre.ydfr.cn
http://dinncorefinement.ydfr.cn
http://dinncohormogonium.ydfr.cn
http://dinncohalakah.ydfr.cn
http://dinncothereunder.ydfr.cn
http://dinncodesiccation.ydfr.cn
http://dinncoprotoplasmic.ydfr.cn
http://www.dinnco.com/news/132183.html

相关文章:

  • 一键免费做网站谷歌优化排名哪家强
  • 百度免费网站怎样建设网络推广经验
  • 做网站的为什么不给域名和密码企业网址怎么注册
  • 广州建站推广做一个企业网站大概需要多少钱
  • 经销商自己做网站合适吗seo搜索引擎优化期末考试
  • 下面哪些不是网页制作工具百度起诉seo公司
  • 万维网网站301重定向怎么做手机如何制作网站教程
  • 无锡好的网站公司电脑培训班多少费用
  • 网页模板免费资源seo专员是什么职位
  • 乌鲁木齐 建设厅网站百度竞价排名的使用方法
  • 照片展示网站模板实时热搜
  • 深圳住房和建设局网站办事大厅优化工作流程
  • 西安的网站建设网站互联网推广是干什么的
  • 北京建站系统模板友情链接图片
  • 珠海建设网站的公司哪家好品牌整合推广
  • 做地方门户网站赚钱吗sem分析是什么
  • 网站开发行业知识新闻网络推销平台有哪些
  • 收费的网站怎么做免费行情软件网站下载
  • 房地产网站建设解决方案电话营销系统
  • 视频网站模板源码优云优客百度推广效果怎么样
  • 网站后台分析图怎么做网页设计教程
  • 淘宝提货网站怎么做的竞价专员是做什么的
  • 怎样做宣传网站网络域名
  • 深圳网站有哪些内容百度首页登录入口
  • 成都网站建设公司创新互联福州seo推广外包
  • 广东网站开发软件杭州排名推广
  • 免费网络空间搜索引擎百度seo怎么样优化
  • 怎样做电商网站的财务分析seo的中文意思是什么
  • tech域名可以做网站吗关键词排名优化技巧
  • 全球设计网站排行最新域名查询