我正在开发诺基亚地图(一个很棒的选择,我真的很喜欢它们),但我只能用HTML5获取位置(纬度和经度),但我不能说出我的名字:/,也许有人可以提出一个想法,怎么做,非常感谢你的帮助。
答案 0 :(得分:3)
适用于JavaScript 3.x的Maps API
当前的3.x JavaScript API围绕REST Geocoder API提供了一个瘦包装器。您需要进行 ReverseGeocode 搜索,然后从结果中找到的Location个对象中提取数据。
可以找到一个完整工作的反向地理编码示例here,但重要的位(获取地址)可以在下面看到:
function reverseGeocode(platform) {
var geocoder = platform.getGeocodingService(),
reverseGeocodingParameters = {
prox: '52.5309,13.3847,150', // Location
mode: 'retrieveAddresses',
maxresults: '1',
jsonattributes : 1
};
geocoder.reverseGeocode(
reverseGeocodingParameters,
function (result) {
var locations = result.response.view[0].result;
// ... etc.
},
function (error) {
alert('Ooops!');
}
);
}
适用于JavaScript 2.x的Maps API(不建议使用)
使用最近的已弃用的 2.x JavaScript API,您需要再次进行 ReverseGeocode 搜索,然后从找到的Address对象中提取数据在结果中。
代码有点长,但重要的位(获取地址)可以在下面看到:
// Function for receiving search results from places search and process them
var processResults = function (data, requestStatus, requestId) {
var i, len, locations, marker;
if (requestStatus == "OK") {
// The function findPlaces() and reverseGeoCode() of return results in slightly different formats
locations = data.results ? data.results.items : [data.location];
// We check that at least one location has been found
if (locations.length > 0) {
for (i = 0, len = locations.length; i < len; i++) {
alert(locations[i].address.street);
alert(locations[i].address.state);
}
} else {
alert("Your search produced no results!");
}
} else {
alert("The search request failed");
}
};
/* We perform a reverse geocode search request: translating a given
* latitude & longitude into an address
*/
var reverseGeoCodeTerm = new nokia.maps.geo.Coordinate(
52.53099,
13.38455
);
nokia.places.search.manager.reverseGeoCode({
latitude: reverseGeoCodeTerm.latitude,
longitude: reverseGeoCodeTerm.longitude,
onComplete: processResults
});