How can I get the list (json) of markers at the map from this web site http://espace-sfr.sfr.fr/espace-sfr/recherche
I need to get the markers from map to display them at my own map. So if there is any json file with all that points and coordinates?
How can I get the list (json) of markers at the map from this web site http://espace-sfr.sfr.fr/espace-sfr/recherche
I need to get the markers from map to display them at my own map. So if there is any json file with all that points and coordinates?
Take a look at the google maps api
https://developers.google.com/maps/documentation/
You can query for a certain location and you will receive json coordinates.
supposed you have jsonfile
for (var i = 0; i < jsonfile.length; i++) {
var pos= new google.maps.LatLng(jsonfile[i].lat,jsonfile[i].lng);
}