asdwenj
asdwenj

Reputation: 15

How do i start google maps at my location

i am able to enable google maps but it starts at the default 0,0 latitude and longitude. Currently using eclipse.

Upvotes: 0

Views: 167

Answers (1)

Meenal
Meenal

Reputation: 2877

these two links helps you to get your current location...

javapapers.com/android/get-current-location-in-android/

How to show my Current location in Google Map in android?

and if you have done the code to get location then simply set it using

     mMap.addMarker(new MarkerOptions()
    .position(new LatLng(lat, long))
    .title("My Location"));

Upvotes: 1

Related Questions