LinkedIn and Google Maps

Has anyone seen the implementation of Google Maps using LinkedIn group information?

In particular, I would like to build the location of group members in the form of contacts on a Google map.

Any help or guidance would be wonderful.

Thank.

+3
source share
3 answers

According to the LinkedIn API, a request is returned to the user profile:

<person>
  ...
  <location>
    <name>
    <country>
      <code>
    </country>
  </location>
  ...
</person>

What you should then geocode to latin / long points.

, . -, API .

+4

LinkedIn, API Google Maps HTTP :

CSV:

http://maps.google.com/maps/geo?q=Oxford+Street,+London&output=csv&sensor=false

XML:

http://maps.google.com/maps/geo?q=Oxford+Street,+London&output=xml&sensor=false

"q" .

. JavaScript:

map.addOverlay(new GMarker(new GLatLng(GEOCODED_LAT, GEOCODED_LON)));
+2

Source: https://habr.com/ru/post/1727461/


All Articles