sv.,
$(function() {
var address = "135 pilkington avenue, birmingham",
pole = $('#pole1');
$.ajax({
url: 'http://nominatim.openstreetmap.org/search?',
data: {
q: address,
polygon: 1,
addressdetails: 1,
format: 'json'
},
type: 'GET',
complete: function() {},
success: function(result) {
if (result.length) {
pole.html(result[0].display_name);
} else {
pole.html('no such address.');
}
},
error: function(error) {
pole.html('error');
}
});
})