How to create GeoTagging image / location tagging application for android with google maps using eclipse with ADT -
hello name james,
i self-learning how develop android applications, have designed few basic apps – name few calculator app, notepad, percentage calculator android. after developing few small basic apps, planning on making more advance apps, planning on creating app allows user tag location on google map or geotag images using application, visible them. example, user can tag location map , later on directions location or take image of location , geotag map , add sort of description it.
i have been searching on google time now, on how can go designing app haven’t found tutorial / guides how implement image geotagging / location tagging google map.
please can give me guide, read upon or maybe correct me if not searching right materials.
so far, have carried out searches including: how add google maps android application (i found guide , understand how can this) how implement geotagging on android application (haven’t found useful material apart few applications released on play store) how implement location tagging (haven’t found useful material either) found video on youtube person has designed similar app planning on doing http://www.youtube.com/watch?v=_v49bxxtnvu other have come across videos / guides shows how add google maps android application http://www.youtube.com/watch?v=awx5t-ewlpc
thanks time.
i'm not sure if found answers already, in case or else still looking: - http://www.vogella.com/tutorials/androidgooglemaps/article.html
i found tutorial helpful in getting started mapsactivity
. if using android studio start new project main activity selected map activity. start off lot of necessary code starting google maps api. walk through how google api key app.
once have set up, @ several listeners available map. may want map.setonmaplongclicklistener
, map.setonmarkerclicklistener
, map.setonmarkerdraglistener
. these decide locations on map.
@ marker
class used google map. set tags/markers class. can replace default marker image if or create own custom tag. https://developers.google.com/android/reference/com/google/android/gms/maps/model/marker?hl=en
you can use locationmanager
current location. here simple tutorial: http://javapapers.com/android/get-current-location-in-android/
if plan on providing camera within app or images gallery, should review camera class : http://developer.android.com/guide/topics/media/camera.html
and simple tutorial: http://www.tutorialspoint.com/android/android_camera.htm
i add 1 feature @ time when starting app project. create map working key , make sure displays map. then, add marker on current location (on emulator, have set default location because not have gps). then, allow user add marker i.e long pressing on map location. then, open dialog box of choices when long pressing on map, i.e tag location, tag custom tag, tag camera image, etc.
Comments
Post a Comment