微信小程序--实现地图定位---获取经纬度

(1)

(2)

(3)

html:

html 复制代码
	<view class="titleTwo" style="border: none;">
				<view class="fontSize30 invoiceTile">企业地址</view>
				<view class="invoiceRight" bind:tap="tapChooseAddress"  data-maptype="2">
					<view class="inputRight fontSize30" style="{{detailedAddress=='请选择企业地址'?'color:#777;':''}} height: auto;" >
						{{detailedAddress || '请选择企业地址'}}
					</view>
				</view>
				<view class="clearBoth"></view>
			</view>

js:

javascript 复制代码
	tapChooseAddress(e) {
		let that = this;
		let maptype = e.currentTarget.dataset.maptype;
		// 地图选点
		wx.chooseLocation({
		  success: function (res) {
		    if(maptype == "1"){
		      that.setData({
		        detailedAddress: res.name,
		        xxdzLongitude: res.longitude,
		        xxdzLatitude: res.latitude,
		      });
		    }else{
		      that.setData({
		        detailedAddress: res.name,
		        xxdzLongitude: res.longitude,//经度
		        xxdzLatitude: res.latitude,//纬度
		      });
		      
		    }
		    
		  },
		  fail: function (err) {
		    console.log(err)
		    wx.showToast({
		      title: '地图位置获取错误',
		      icon: "none"
		    })
		  }
		})
	},
	// res.longitude,//经度
  //latitude,//纬度

app.json:

javascript 复制代码
   "requiredPrivateInfos": [
      "getLocation",
      "chooseLocation"
    ],
    "permission": {
      "scope.userLocation": {
        "desc": "获取用户位置信息用于填写收货地址"
		}
      },
相关推荐
JELEE.19 小时前
原生微信小程序开发笔记
笔记·微信小程序
蓝黑20201 天前
从经纬度获取地理信息以及从地名获取经纬度
小程序
码云数智-园园2 天前
和小鹅通一样的平台有哪些
微信小程序
吴声子夜歌2 天前
小程序——逻辑层
小程序
花木偶2 天前
小迪网安:APP攻防-Day1
安全·小程序
吴声子夜歌3 天前
小程序——生命周期函数和事件处理函数
服务器·前端·小程序
hnxaoli3 天前
win10程序(十六)通达信参数清洗器
开发语言·python·小程序·股票·炒股
码云数智-大飞4 天前
自助建站系统哪个好?快速建站哪个平台好
微信小程序
吴声子夜歌4 天前
小程序——项目结构
小程序
大黄说说4 天前
微信小程序制作平台有哪些?SaaS小程序搭建平台推荐
微信小程序