Wednesday 22 June 2016

Google Places : List all restaurant by geolocation or latitude on logitude by google map api

1. List address : placesapi.blogspot.com/2016/06/google-api-list-all-citiys-address.html





2. Retrieve geo-location (latitude,longitude) by google map api so use :
https://maps.googleapis.com/maps/api/geocode/json?
Parameter :  Key =
  address =

Example:
https://maps.googleapis.com/maps/api/geocode/json?key=AIzaSyBkuOd8bHJXpiHvtrJt3kLLuKi2-VyIio4&6 &address=Vicenza, Province of Vicenza, Italy




 3. List all near by places by types by google place api:

URL :https://maps.googleapis.com/maps/api/place/nearbysearch/xml?

Parameter:
   Key = Your API Key
   location = latitude, longitude
   type = restaurant| hospital | school




Example:
https://maps.googleapis.com/maps/api/place/nearbysearch/xml?key=AIzaSyBkuOd8bHJXpiHvtrJt3kLLuKi2-VyIio4&62&location=-33.8670522,151.1957362&radius=500&type=restaurant




4. Place Details : Photos :Get all detail of place 
    Url : https://maps.googleapis.com/maps/api/place/details/json?

Parameters:
    Key : 
    placeid:


Example :
https://maps.googleapis.com/maps/api/place/details/json?placeid=ChIJN1t_tDeuEmsRUsoyG83frY4&key=AIzaSyBQTJTC7PascS0AbofP3vpp1Gco1IwzT0I 

   

No comments:

Post a Comment