uniapp版本
selectPosition(e) {
uni.setStorageSync("b_page_index", e); // 存入當前選擇
let _latitude = "";
let _longitude = "";
console.log("111");
uni.getLocation({
type: "wgs84",
success: (res) => {
console.log(res);
_longitude = res.longitude;
_latitude = res.latitude;
let url = "https://apis.map.qq.com/tools/locpicker?";
url =
url +
"type=0&backurl=" +
encodeURIComponent(
window.location.protocol +
"//" +
window.location.host +
"/h5/#/pages/index/book-car-service"
); // 選擇類型及拼接回跳地址
url = url + "&coord=" + _latitude + "," + _longitude; // 經緯度
url = url + "&key=" + this.key + "&referer=myapp"; // 開發密鑰及應用名稱
console.log(url)
window.location.href = url; // 跳轉騰訊地圖選點組件
},
});
},
let url = "https://apis.map.qq.com/tools/locpicker?";
url =
url +
"type=0&backurl=" +
encodeURIComponent(
window.location.protocol +
"//" +
window.location.host +
"/h5/#/pages/customer/home"
); // 選擇類型及拼接回跳地址
url = url + "&coord=" + _latitude + "," + _longitude; // 經緯度
url = url + "&key=" + this.key + "&referer=myapp"; // 開發密鑰及應用名稱
// console.log('url :>> ', url);
window.location.href = url; // 跳轉騰訊地圖選點組件
地圖選址的組件:
https://lbs.qq.com/webApi/component/componentGuide/componentPicker
