Android – Locating nearby Shopping Malls and their Stores using GPS/Wifi in Android

androidandroid-layoutandroid-maps

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

Best Answer

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.

Related Topic