微信小程序 --- 获取当前坐标

Posted 帅到要去报警

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序 --- 获取当前坐标相关的知识,希望对你有一定的参考价值。

获取位置:get.location 

type:wgs84(是全球定位系统,获取的坐标,gcj02是国家测绘局给出的坐标)

btnclick:function(){
    wx.getLocation({
        type:‘wgs84‘,// 默认wgs84
        success:function(res){},
        fail:function(res){},
        complete:function(){}
    });
}

 

查看位置:有两个

第一个:wx.chooseLocation:可以打开地图进行选择,之后返回给 complete 

btnclick:function(){
    wx.getLocation({
        success:function(res){
            var latitude = res.latitude;
            var longitude = res.longitude;
            wx.chooseLocation({
                latitude = latitude,
                longitude = longitude,
                success:function(res){
                    console.log(res);
                },
                fail:function(){},
                complete:function(){}
            });
        }
    });
}

第二个:wx.openLocation:使用微信内置地图查看位置

btnclick:function(){
    wx.getLocation({
        success:function(res){
            var latitude = res.latitude;
            var longitude = res.longitude;
            wx.openLocation({
                latitude = latitude,
                longitude = longitude,
                scale:28
            });
        }
    });
}

 

以上是关于微信小程序 --- 获取当前坐标的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序-位置坐标

微信小程序 定位 获取国家省市区

微信小程序如何获取当前行号

微信小程序代码片段

微信小程序代码片段分享

微信小程序获取位置信息