WeChat Mini 프로그램 API 위치
wx.getLocation(OBJECT)
WeChat 애플릿은 현재 지리적 위치와 속도를 가져옵니다
OBJECT 매개변수 설명: #🎜 🎜 #
success 반환 매개변수 설명:
#🎜🎜 #샘플 코드:
wx.getLocation({
type: 'wgs84',
success: function (res) {
var latitude = res.latitude;
var longitude = res.longitude;
var speed = res.speed;
var accuracy = res.accuracy;
}
});
wx.openLocation(OBJECT) - 최신 버전 보기 #🎜 🎜 #
OBEJCT 매개변수 설명:
#🎜🎜 #
샘플 코드:
wx.getLocation({ type: 'gcj02', //返回可以用于wx.openLocation的经纬度 success: function (res) { var latitude = res.latitude; var longitude = res.longitude; wx.openLocation({ latitude:latitude, longitude:logitude, scale:1 }) } });