当前位置:   article > 正文

uniapp调用地图,进行位置查询,标记定位_uniapp

uniapp

这周开会又新增一个小功能,就是需要通过身份证号/手机号在地图查询(后台返回经纬度),标记位置,想着挺麻烦,做的时候发现没啥技术,分享给大家。

<map class="map" :longitude="longitude" :latitude="latitude" scale="16" :markers="markers" show-location="true"></map>
  1. data() {
  2. return {
  3. longitude: "", // 当前位置经度
  4. latitude: "", // 当前位置纬度
  5. markers: [], // 获取位置的标记信息
  6. }
  7. }
  1. methods: {
  2. searchBtn(){
  3. let then = this;
  4. uni.getLocation({
  5. type: 'wgs84',
  6. geocode: true, //设置该参数为true可直接获取经纬度及城市信息
  7. success: function (res) {
  8. // res会返回当前经纬度信息之类,如果默认想展示当前位置,下面经纬度可直接使用res的值,如果默认展示指定位置,那就自定义经纬度即可;
  9. then.longitude = '116.407526';
  10. then.latitude = '39.904030';
  11. then.markers = [
  12. {
  13. title: '',
  14. latitude: then.longitude,
  15. longitude: then.latitude,
  16. height: 100,
  17. width: 100,
  18. iconPath: 'http://cdn.duanqinghua.com/duanqinghua/img/55.jpg'
  19. }
  20. ]
  21. }
  22. });
  23. }
  24. }

然后每次查询,通过调后台接口,拿到对应经纬度,赋值给longitude和latitude,那么地图就会展示对应经纬度区域,如果同时想展示定位的图标,那就按上方方式给markers赋值,可标记多个位置。

(获取到数据后,最好不要直接给markers赋值,先let随便定义一个赋值,再将let定义的赋给markers,否则会出现不显示标记点现象)

围观地址 uniapp调用地图,进行位置查询,标记定位

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/186957
推荐阅读
相关标签