Reputation: 11
I have to implement a restaurant location service by using the google places api like this:
but the result are very different from the near by search using google maps:
I've also tried the Radar Search Request but it doesn't work either.
Upvotes: 0
Views: 436
Reputation: 593
You can use google map PlacesService.
service = new google.maps.places.PlacesService(map);
service.nearbySearch(request, callback);
For more details on parameter and how to use it, Check: https://developers.google.com/maps/documentation/javascript/places
Upvotes: 1