0

I want to develop an android application, that gets my current location thru GPS and displays me the nearby Shopping Malls and their Shops.

So for i have learned about Location API from vogella.de ..

Again i saw discussion here about getting current location.

I got success in getting current location so far.

When i searched for such applications in itunes, i got two apps..

1st ClipMobile.

2nd Armadealo Shopping

I want to display this things in android. How can i start ? See the screenshots :

enter image description here enter image description here

Community
  • 1
  • 1
Kartik Domadiya
  • 29,868
  • 19
  • 93
  • 104

2 Answers2

2

The pieces you need are: (A) determine user's position (B) search a point of interest (POI) database for nearby shopping malls (C) plot results on a map display

Sounds like you're set on (A). For (B), I recommend looking at the POI offerings from SimpleGeo or CloudMade. (Note that if you're going for non-U.S. coverage, you may need to find different POI providers.) And for (C) you can use Google Maps for Android or CloudMade's SDK.

Drew Dara-Abrams
  • 8,016
  • 11
  • 40
  • 48
1

Google offers this through their Google Places API. For some basic info on how to get started with the Google Places API see this question.

Information on the Google Places REST API can be found at the The Google Places API (Developer Preview)

AFAIK, there is no clean-cut client library available, but here's a blog post on how to properly sign the requests to the Google Places API. The request themselves are covered in the Google docs.

Community
  • 1
  • 1
ddewaele
  • 22,363
  • 10
  • 69
  • 82
  • Yaa i saw your answer in that question before you posted here. But is there any implementation of Google Places Of Interest API ?. I want to learn it. Because if i will start randomly, i am sure i wont b able to get anything later. – Kartik Domadiya Apr 05 '11 at 09:29
  • Google offers an implementation. The Place Search and Place Details Requests requests should cover what you need here. – ddewaele Apr 05 '11 at 09:42
  • where can i find example related to Google Places API ?. I already have googled out, but it didnt gave returned with anything yet. – Kartik Domadiya Apr 05 '11 at 09:48