wx.ready(() => { wx.getLocation({ type: 'gcj02', // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02' success: (res) => { this.latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90 this.longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180。 let lnglatXY = [this.longitude, this.latitude]; // 高德地图API有说明 https://lbs.amap.com/api/javascript-api/reference/lnglat-to-address/ AMap.convertFrom(new AMap.LngLat(this.longitude, this.latitude), 'baidu', (status, resl) => { this.longitude = resl.locations[0]; this.latitude = resl.locations[1]; }); // 开启高德地图 let mapObj = new AMap.Map('mapcontainer', { resizeEnale: true, center: [this.longitude, this.latitude], zoom: 18 }); let mar
Angular2 开发微信公众号获取地理位置ios 在高德地图上显示存在偏移
最新推荐文章于 2021-12-08 15:23:42 发布