20

How to display nearby places & place details like ATM's, Hospitals, Restaurants, etc. in Android Google Map

This is the link that I used:

Showing nearby places & place details using Google Places & Maps API

I'm able to fetch my current location but nearby places are not getting displayed. Neither am I getting any error in my logcat

Rohit Sharma
  • 1,271
  • 5
  • 19
  • 37
void Adi
  • 318
  • 1
  • 4
  • 12

3 Answers3

18

you can get places near by your location using Google Place API and for use of Place Api see this blog

hope this will help you.

Praveen Sharma
  • 4,326
  • 5
  • 25
  • 45
  • Thanks got it. Also, is there any way to get updates about location change? That means if I need to receive a message about location change, is there any tutorial for that??? – void Adi Nov 08 '13 at 12:17
  • 1
    yes of course use Location Listener. here is a nice tutorial http://www.androidhive.info/2012/07/android-gps-location-manager-tutorial/ – Praveen Sharma Nov 08 '13 at 12:26
  • Is it possible to get the nearest place list of a particular lat-long from new Place API? – Nithinjith Jun 24 '19 at 12:54
1

Get places nearby your location using Google Place API. Know about Location Data also filter data with Place Type where you found the place to search, Places service, place autocomplete requests and deprecated types. Resource 1 Resource 2

enter image description here

Md Imran Choudhury
  • 9,343
  • 4
  • 62
  • 60
0

I tried using the Google Current Place API but the results were limited to a few results and i could not change the radius around the current location. To get many results and to adjust the area radius around the current users location use the Places Search API.

Joshua Majebi
  • 1,110
  • 4
  • 16
  • 34