-2

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?

dav
  • 5
  • 3

2 Answers2

0

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.

Arno_Geismar
  • 2,296
  • 1
  • 15
  • 29
0

supposed you have jsonfile

                for (var i = 0; i < jsonfile.length; i++) {


               var pos=   new google.maps.LatLng(jsonfile[i].lat,jsonfile[i].lng);


            }
CodeSlayer
  • 1,318
  • 1
  • 12
  • 34