如何使用nominatim goecode进行更改?
var geocoder = new google.maps.Geocoder();
geocoder.geocode( { 'address': remote_ip_info.city}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
map.setZoom(8);
} else {
//alert("Geocode was not successful for the following reason: " + status);
}
});