小程序
小游戏
企业微信
微信支付
扫描小程序码分享
没用过服务市场的接口,刚买了个逆地址解析,还不知道怎么使用
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
已经解决了。这个蛮实用的,以前用位置服务申请Key,客服说需要付5万,只要使用其中的逆地址也要付5万,费用实在太高了。单独买这个才300起,蛮实用的。赞
wx.getLocation({
type: 'gcj02',
success(res) {
console.log('获取结果'+res.latitude)
// 调用逆地址接口
wx.serviceMarket.invokeService({
service: ' ',
api: 'rgeoc',
data: {
"location": res.latitude+","+res.longitude,
"get_poi": 1
},
}).then(res => {
console.log('invokeService success', res)
}).catch(err => {
console.error('invokeService fail', err)
})
}
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
建议参考下面两个文档:
https://fuwu.weixin.qq.com/service/detail/00046c6eed0df09552990112551815
https://developers.weixin.qq.com/doc/oplatform/service_market/buyer_guideline/API/introduction.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
已经解决了。这个蛮实用的,以前用位置服务申请Key,客服说需要付5万,只要使用其中的逆地址也要付5万,费用实在太高了。单独买这个才300起,蛮实用的。赞
wx.getLocation({
type: 'gcj02',
success(res) {
console.log('获取结果'+res.latitude)
// 调用逆地址接口
wx.serviceMarket.invokeService({
service: ' ',
api: 'rgeoc',
data: {
"location": res.latitude+","+res.longitude,
"get_poi": 1
},
}).then(res => {
console.log('invokeService success', res)
}).catch(err => {
console.error('invokeService fail', err)
})
}
})
建议参考下面两个文档:
https://fuwu.weixin.qq.com/service/detail/00046c6eed0df09552990112551815
https://developers.weixin.qq.com/doc/oplatform/service_market/buyer_guideline/API/introduction.html