위챗 애플릿--- 현재 좌표 가져오기

2655 단어
위치 가져오기: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
            });
        }
    });
}

 
다음으로 전송:https://www.cnblogs.com/e0yu/p/8489700.html

좋은 웹페이지 즐겨찾기