javascript 反向地理编码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 反向地理编码相关的知识,希望对你有一定的参考价值。
// From https://developer.here.com/api-explorer/rest/geocoder/reverse-geocode
$.ajax({
url: 'https://reverse.geocoder.api.here.com/6.2/reversegeocode.json',
type: 'GET',
dataType: 'jsonp',
jsonp: 'jsoncallback',
data: {
prox: '39.2134,10.0956,250721',
mode: 'retrieveAddresses',
maxresults: '1',
gen: '9',
app_id: 'devportal-demo-20180625',
app_code: '9v2BkviRwi9Ot26kp2IysQ'
},
success: function (data) {
console.log(JSON.stringify(data));
}
});
/*
* @param {H.service.Platform} platform
*/
function reverseGeocode(platform) {
var geocoder = platform.getGeocodingService(),
parameters = {
prox: '39.2134,10.0956,250721',
mode: 'retrieveAddresses',
maxresults: '1',
gen: '9'};
geocoder.reverseGeocode(parameters,
function (result) {
alert(result);
}, function (error) {
alert(error);
});
}
以上是关于javascript 反向地理编码的主要内容,如果未能解决你的问题,请参考以下文章
使用 Google Maps Javascript API V3 反向地理编码检索邮政编码
javascript 只从Google Maps API反向地理编码器获取城市和州
javascript 只从Google Maps API反向地理编码器获取城市和州
使用谷歌地图地理编码器反向获取城市名称的简单功能
反向数据编码是啥
iOS5 反向地理编码限制