首页 > 编程语言 >微信小程序地图的标记和轨迹

微信小程序地图的标记和轨迹

时间:2023-02-03 15:35:33浏览次数:58  
标签:轨迹 console 标记 微信 longitude res latitude data wx

 

1.标记图标

 

 

 

   <view class="top">
        <map wx:if="{{markersStatus}}" class="map" id="myMap" scale="{{scale}}" longitude="{{longitude}}" latitude="{{latitude}}" markers="{{datatlist}}" bindregionchange="mapChange"  show-location='true'>
        </map>
        // 这个是上图灰色图标  点击可回到初始位置
        <view class="nav-panel">
            <image class="icon-location" bindtap="getCenterLocation" src="https://applets.jinchehui.com/static/images/icon_location_2.svg" bindtap="getCenterLocation"></image>
        </view>
    </view>
    <van-dialog id="van-dialog" />

小程序地理定位qqmap-wx-jssdk.js:qqmap-wx-jssdk.js
点击可进行下载里边的 :下载微信小程序JavaScriptSDK

var QQMapWX = require('../../utils/qqmap-wx-jssdk.min.js'); //自行根据文件放置
var qqmapsdk;
qqmapsdk = new QQMapWX({
    key: '申请的key'
});
import Dialog from '../../miniprogram_npm/@vant/weapp/dialog/dialog';
Page({

    /**
     * 页面的初始数据
     */
    data: {
        lat: '', //纬度
        lng: '', //经度
        latitude: '',
        longitude: '',
        keyword: '',
        scale: 16, //5-18
        markersStatus: false,
        datatlist: {}
    },

    /**
     * 生命周期函数--监听页面加载
     */
    onl oad: function (options) {
        this.getLocation();
        this.bindAuthLocation(); //授权位置
    },

    //授权位置按钮
    bindAuthLocation() {
        //获取授权结果查看是否已授权位置
        wx.getSetting({
            success: (res) => {
                if (res.authSetting['scope.userLocation'] == undefined && !res.authSetting['scope.userLocation']) //未授权位置(首次进来页面)
                    this.getLocation(); //获取当前位置信息
                else if (res.authSetting['scope.userLocation'] === false) //未授权位置(点击官方授权弹框取消按钮后)
                    Dialog.confirm({
                        title: '提示',
                        message: '需要获取你的地理位置,你的位置信息将用于位置显示',
                    })
                    .then(() => {
                        this.bindConfirmLocation()
                        // on confirm
                    })
                    .catch(() => {
                        // on cancel
                    });
                else //已授权
                    this.getLocation(); //获取当前位置信息
            }
        })
    },
    //定位授权框确认按钮
    bindConfirmLocation(e) {
        //打开设置页面进行授权设置
        wx.openSetting({
            success: (res) => {
                if (res.authSetting['scope.userLocation']) {
                    //获取当前位置信息
                    this.getLocation(); //获取当前位置信息
                }
            }
        });
    },
    //获取位置
    getLocation() {
        this.mapCtx = wx.createMapContext('myMap')
        // 调用接口
        wx.getLocation({
            type: 'gcj02',
            success: (res) => {
                // console.log("res", res)
                if (res) {
                    this.data.lat = res.latitude;
                    this.data.lng = res.longitude;
                    this.setData({
                        latitude: this.data.lat,
                        longitude: this.data.lng,
                        markersStatus: true
                    })
                } else {
                    wx.showToast({
                        title: '定位失败',
                        icon: 'none',
                        duration: 1500
                    })
                }
                qqmapsdk.reverseGeocoder({
                    success: (res) => {
                        console.log('=============', res)
                    },
                });
                this.getFood(res.longitude, res.latitude)

                this.setData({
                    markersStatus: true
                })
            },
            fail(err) {
                wx.hideLoading({});
                console.log("asafasfs", err)
                // wx.showToast({
                //     title: '定位失败',
                //     icon: 'none',
                //     duration: 1500
                // })
                setTimeout(function () {
                    // wx.navigateBack({
                    //     delta: 1
                    // })
                }, 1500)
            }
        })
    },
    //点击回到初始位置
    getCenterLocation: function () {
        var that = this;
        that.mapCtx.moveToLocation()
    },
    //滑动获取周围的店铺
    mapChange(e) {
        if (e.type === 'end') {
            this.mapCtx.getCenterLocation({
                success: res => {
                    console.log(res);
                    this.getFood(res.longitude, res.latitude)
                }
            })
        }
    },
    //搜索附近的店铺
    getFood(longitude, latitude) {
        qqmapsdk.search({
            location: {
                latitude: latitude,
                longitude: longitude,
            },
            keyword: '',
            success: (res) => {
                console.log('地理位置:', res);
                var mark = []
                for (let i in res.data) {
                    mark.push({
                        iconPath: '/images/adr.png', //周边的图标    根据自己需要换
                        alpha: 1,
                        title: res.data[i].title,
                        id: Number(i),
                        longitude: res.data[i].location.lng,
                        latitude: res.data[i].location.lat,
                        width: parseInt(31.91) + 'px',//设置图标的大小
                        height: parseInt(31.91) + 'px',
                    })
                }
                mark.push({
                    iconPath: '/images/address.png', //中心的图标     根据自己需要换
                    id: Number(res.data.length),
                    alpha: 1,
                    longitude: longitude,
                    latitude: latitude,
                    width: parseInt(43.87) + 'px',
                    height: parseInt(43.87) + 'px',
                })
                this.setData({
                    datatlist: mark,
                })
            },
            fail: function (res) {
                console.log(res);
            },
            complete: function (res) {
                // console.log(res);
            }
        });
    },
})

2.画线画轨迹polyline

如果在地图上画出轨迹,需要先规划路径,规划线路会得到一个polyline的数组(有时需要解压),添加到map组件的polyline属性

https://developers.weixin.qq.com/miniprogram/dev/component/map.html#polyline

<map id="map"
  style="width:100vw;height:70vh;"
  longitude="{{longitude}}"
  latitude="{{latitude}}"
  scale="{{scale}}"
  markers="{{markersList}}"
  polyline="{{polyline}}"
  include-points='{{points}}'
  show-location
  bindtap='mapTap'
  bindmarkertap="markerTap"
  bindregionchange="regionChange"
>
  <cover-view class="cover-view" bindtap="controltap">
    <cover-image class="station" src="https://linli-oss.vecommunity.com/xchx/icon/position.jpg"></cover-image>
  </cover-view>
</map>

 

 

 

 

转 : https://www.jianshu.com/p/24e95ac0e6e3

https://blog.csdn.net/weixin_46653486/article/details/124444537

https://blog.csdn.net/flyestcoder/article/details/109532523

https://blog.csdn.net/heavenz19/article/details/128456228

 

标签:轨迹,console,标记,微信,longitude,res,latitude,data,wx
From: https://www.cnblogs.com/fps2tao/p/17089416.html

相关文章