I am trying to make a android app where I want to show the location of user and the places to visit around that location. Let's say for example I am around certain location and I want to discover popular places around me, so how should I start I have no idea where to begin with ? any help will be appreciated.
Thanks.
You can use Foursquare API to get popular places info based on User location. http://developer.android.com/training/location/index.html
To get User Location , you should read android official document. http://developer.android.com/training/location/index.html
Related
I am developing android application, I am looking for a solution on getting the near by tweets based on my current location for example I need to get tweets near me within 6 km radius. I tried many API's I m still unable to find it. Please let me know if anyone has implemented the same example. Thanks in advance
The Twitter API docs demonstrate how to do this perfectly. See here https://developer.twitter.com/en/docs/tutorials/filtering-tweets-by-location.html
I want to create an android app like nearby places (Shops,travelling places, Restaurants, etc). How to get the basics of Place API for android? Can someone give me any recommendations or ideas?
App Feathers -
When user opened my app, It's should be show to the user whats near to his place whatever he go.
Any Recommendations?
Google places Nearby Search lets you search for places within a specified area. You can refine your search request by supplying keywords or specifying the type of place you are searching for.
More details : https://developers.google.com/places/web-service/intro
You can use below API:
https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=-33.8670522,151.1957362&radius=1500&type=restaurant&keyword=cruise&key=YOUR_API_KEY
First read and implement Maps SDK for Android
and then basically you need coordinates of the places that you want to show user and the location of user. Good luck!
I'm trying to make an application based on Google Directions (Maps) API. Basically, I'll develop a mobile app which will tell users where to navigate with their cars and I'll monitor the actual trip (route followed, time, speed etc). Then, I'll need to process the data retrieved in order to display it on a web platform and compute some statistics.
My questions is, which API should I use and how? I've actually searched about this topic but I couldn't find something useful (like a tutorial) regarding this subject, given the fact that I'm new in this domain and I don't know how to begin and what to do.
Thus, I would really appreciate if you can give me some steps that I must follow in order to accomplish this. Also, all types of materials (tutorials, documentations, articles and anything regarding that subject and tips for really beginners) would be very, very helpful for me!
Refer the following link for directions API documentation.
https://developers.google.com/maps/documentation/directions/intro
You can refer the following link for parsing directions.
https://github.com/jd-alexander/Google-Directions-Android
On Location Listener,listen continuosly your current location and store in a list and after the trip is completed,You can use that list that which path that the user as travelled and do your algorithm according to your requirement.
I am really new for android development and first of all I want to be sure if the approach explained below is possible or not. I have a longitude and attitude data coming from GPS and I want to display an arrow symbol on a Google Map android application. Is it possible? In addition to this, I want to draw line for indicating the road the vehicle passed that I track by GPS. Is there such a kind of implementation samples? I have a look at many videos and Web sites but have not found such a sample exactly performing these requirements. Could you please clarify me regarding to this issue?
Yes possible...see these links..
https://developers.google.com/maps/documentation/android-api/
https://developers.google.com/maps/documentation/android-api/code-samples
https://developers.google.com/android/reference/com/google/android/gms/location/FusedLocationProviderApi
https://developers.google.com/android/reference/com/google/android/gms/maps/MapView
https://github.com/googlemaps/android-maps-utils
https://github.com/googlemaps/android-samples
https://www.pubnub.com/blog/2015-05-12-broadcasting-realtime-location-data-for-android-live-updating-map/
Happy coding!!
I am creating an app for android which will be used by gym members. I need to find a tutorial or any other material which may help me to give the user an option to "find nearest gym". This will determine the location of the user and display their closest gym options to their location.
Thanks in advance!
The Google Places API has a gym category:
http://code.google.com/apis/maps/documentation/places/supported_types.html
A tutorial for using the API is here:
http://blog.brianbuikema.com/2010/08/android-development-part-1-using-googles-places-api-to-develop-compelling-location-based-mobile-applications/