Skip to content
Advertisement

Can’t navigate in google maps activity it always spawns back to my current location

I am new to android development and was working on an app which requires google map activity. Problem I am facing is that when I am trying to pan(or scroll) through the map I am immediately respawned to my current location which I set initially. A little help would be wonderful as I am stuck at this point and unable to find a solution. Here is the code:-

JavaScript

}

Advertisement

Answer

The one requirement that you likely have but not stated is:

When the lastLocation becomes available and the user has not moved the map then center the map on the location. If the user has already moved the map then do not center the map. In either case, add a marker at the user’s location.

Before getting too far along it must be noted that Google Maps provides a feature similar to what you are trying to achieve, though you’d still have to “move camera”. The marker is a blue-ball and not the typical marker. See myMap.setMyLocationEnabled(true). That’s it! Do this when you have gotten map permissions.

But in the event you don’t want to use that then here are the simple changes you need.

Remember that the LocationManager getLastKnownLocation can return null if the device does not have one (yet). So I’d recommend one small change a bit unrelated – just let the location listener do all the work and get rid of this one special case:

JavaScript

So this opens the possibility that the user could be interacting with map and finally the last location arrives. I understand this to be the issue you are trying to address.

(As an aside, it seems to me you are mixing the use of the android.location.LocationManager with the FusedLocationProviderApi (com.google.android.gms.location) so I couldn’t get your code to compile due to incompatible LocationListeners. Unfortunately, Google Maps has two LocationListener classes so to be certain you’d have to include your imports to understand further.)

Anyways…

When the map is first ready (onMapReady) the camera of the map is centered at (0,0). You can get the cameras target position (center) at any time using LatLng tgtCtr = mMap.getCameraPosition().target;.

Oddly enough it is not straightforward to know whether the user has interacted with the map in any way: scrolling events generate camera changes while touch events generate a separate event. Camera changes cannot be used exclusively because your code or the user could just zoom which is not moving the map. You could go this route but for the purposes of this answer, to keep things simple, the camera target is used.

Declare a class instance variable (same area where you define mMap):

JavaScript

So in your onMapReady after assigning mMap do:

JavaScript

So assume your code exists as you posted (it’s pretty close) then these changes may help:

JavaScript

It also seems like a good idea to save the marker which was added for user’s location – this is optional but may come in handy to prevent multiple markers from being added at that one location:

JavaScript

So really the only difficulty in this is figuring out “has the user moved the map.” In this case, based on the initial requirement you would not want to move the map.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement