uniapp 小程序调取第三方地图导航

事件:

<button @tap="map1" >导航</button>

在manifest.json的源码视图里面配置,允许获取经纬度

"mp-weixin" : {
        "appid" : "xxxxxxxxxxxxxxxxxxxxx",
        "setting" : {
            "urlCheck" : false,
            "minified" : true
        },
        "usingComponents" : true,
		"permission": {
				"scope.userLocation": {
					"desc": "你的位置信息将用于小程序位置接口的效果展示"
				}
			},
			 "requiredPrivateInfos": [
			     "chooseLocation","getLocation"
			    ]
    },

获取经纬度:

onShow () {
		let _this = this;
		uni.getLocation({
			success(res) {
				_this.latitude = res.latitude;
				_this.longitude = res.longitude;
			}
		})


  },

 方法:

 map1(){
		uni.openLocation({
			latitude: this.latitude,
			longitude: this.longitude,
			name: this.detail.project_name,//去哪的名字
			address: this.detail.province + this.detail.city + this.detail.district//地址
		});
	  },

若未授权获取位置,点击弹出弹窗获取权限

map1(){
				
					  let that = this
					      // 获取用户是否开启 授权获取当前的地理位置、速度的权限。
					  uni.getSetting({
						success (res) {
						  console.log(res)
				
						  // 如果没有授权
						  if (!res.authSetting['scope.userLocation']) {
							// 则拉起授权窗口
							uni.authorize({
							  scope: 'scope.userLocation',
							  success () {
								//点击允许后--就一直会进入成功授权的回调 就可以使用获取的方法了
								uni.getLocation({
								  type: 'wgs84',
								  success: function (res) {
									that.longitude = res.longitude
									that.latitude = res.latitude
									console.log(res)
									console.log('当前位置的经度:' + res.longitude)
									console.log('当前位置的纬度:' + res.latitude)
									uni.openLocation({
										latitude: that.latitude,
										longitude:that.longitude,
										name: '郑州市二七区',//去哪的名字
										address: '郑州市二七区航海中路60号海为科技园C区10层'//地址
									});
								  }, fail (error) {
									console.log('失败', error)
								  }
								})
							  },
							  fail (error) {
								//点击了拒绝授权后--就一直会进入失败回调函数--此时就可以在这里重新拉起授权窗口
								console.log('拒绝授权', error)
				
								uni.showModal({
								  title: '提示',
								  content: '若点击不授权,将无法使用位置功能',
								  cancelText: '不授权',
								  cancelColor: '#999',
								  confirmText: '授权',
								  confirmColor: '#f94218',
								  success (res) {
									console.log(res)
									if (res.confirm) {
									  // 选择弹框内授权
									  uni.openSetting({
										success (res) {
										  console.log(res.authSetting)
										}
									  })
									} else if (res.cancel) {
									  // 选择弹框内 不授权
									  console.log('用户点击不授权')
									}
								  }
								})
							  }
							})
						  } else {
							// 有权限则直接获取
							   uni.openLocation({
								latitude: that.latitude,
								longitude:that.longitude,
								name: '郑州市二七区',//去哪的名字
								address: '郑州市二七区航海中路60号海为科技园C区10层'//地址
							   });
							 
						  }
						}
					  })
					
				// uni.openLocation({
				// 	latitude: this.latitude,
				// 	longitude: this.longitude,
				// 	name: '郑州市二七区',//去哪的名字
				// 	address: '郑州市二七区航海中路60号海为科技园C区10层'//地址
				// });
			  },

Java后端调取第三方API时,如果你需要通过`PUT`请求并且附带`token`,通常会涉及到以下几个步骤: 1. **创建HttpClient实例**: 首先,你可以使用`java.net.HttpURLConnection`或者更现代的`org.apache.http.client`库来创建一个HTTP客户端。 ```java import org.apache.http.HttpHost; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpPut; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.util.EntityUtils; CloseableHttpClient httpClient = HttpClients.createDefault(); HttpHost targetHost = new HttpHost("第三方API地址", 80, "http"); ``` 2. **添加Authorization头部**: 使用`BasicHttpAuth`模块添加包含`token`的`Authorization`头。例如,如果`token`是Base64编码的,可以这样做: ```java String encodedToken = Base64.getEncoder().encodeToString(("Bearer " + yourToken).getBytes()); CloseableHttpResponse response = null; try { HttpPut putMethod = new HttpPut(targetHost.toURI() + "/your-endpoint"); putMethod.setHeader("Authorization", "Basic " + encodedToken); // ...其他请求头设置... putMethod.setEntity(new StringEntity(yourRequestBody)); response = httpClient.execute(putMethod); } catch (Exception e) { // 处理异常 } ``` 3. **处理响应**: 获取并关闭响应,解析返回的数据。记得在完成操作后关闭连接: ```java try { int responseCode = response.getStatusLine().getStatusCode(); if (responseCode == HttpStatus.SC_OK) { String responseBody = EntityUtils.toString(response.getEntity(), StandardCharsets.UTF_8); // 处理响应内容 } else { // 处理错误状态码 } } finally { response.close(); httpClient.close(); } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值