I ask the user to write an address and I have to show it on a map. I know how to write the script but I don't know how to get the coordinates having the street address. What can I do?
PS: I am using leaflet
I ask the user to write an address and I have to show it on a map. I know how to write the script but I don't know how to get the coordinates having the street address. What can I do?
PS: I am using leaflet
I work for SmartyStreets and we have a service that allows you to obtain the latitude and longitude of an address. If you use this method you need to create an account to get an authentication id/token pair.
var xhr = new XMLHttpRequest();
xhr.onload = function() {
var addresses = JSON.parse(this.responseText);
if(addresses.length == 1) {
var latitude = addresses[0].metadata.latitude;
var longitude = addresses[0].metadata.longitude;
}
};
xhr.open("get", "https://api.smartystreets.com/street-address?street=1+Santa+Claus+North+Pole+AK&auth-id=<AUTH-ID-HERE>&auth-token=<AUTH-TOKEN-HERE>", true);
xhr.send();
First, you will have to include the .js files of a geocoder in the head of your HTML code, for my example, I have used this one: https://github.com/perliedman/leaflet-control-geocoder. Like this:
Then you will have to initialize the Geocoder in your .js:
geocoder = new L.Control.Geocoder.Nominatim(); Then you will have to specify the address that you are looking for, you can save it in a variable. For example:
(You can also get the address out of your database, then save it in the variable)
Then you can use the following code to 'geocode' your address into latitude/longitude (coördinates). This function will return the latitude/longitude (coördinates) of the address. You can save the latitude/longitude (coördinates) in a variable so you can use it later for your marker. Then you only have to add the marker to the map.