Any other geocoding service that would allow me to get lat and lng from address for 1000 requests just once ?
I can't ues Google Maps API. I need to use it freely and import lat and lng values into my database for 1000 addresses. If anyone knows such services, could someone provide me an code example of getting such values ?
For example google maps api uses this one :
geocoder = new google.maps.Geocoder();
geocoder.geocode( { 'address': address }, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
var value1 = results[0].geometry.location.lat();
var value2 = results[0].geometry.location.lng();
..
I need the same but with different geocoding service ? Please help me with such code and service thank you.