What steps will reproduce the problem?
1. Add MyLocationOverlay to map
2. enable location updates to be drawn
3. call disableMyLocation() to stop location updates
What is the expected output? What do you see instead?
MyLocationOverlay should stop drawing the location, but it still does draw the
latest location it has received.
What version of the product are you using? On what operating system?
r1129
Please provide any additional information below.
To fix this the 4th line in the draw() method needs to be changed from
if (mLocation != null) {
to
if (mLocationListener != null && mLocation != null) {
Original issue reported on code.google.com by osei...@gmail.com on 8 Mar 2013 at 3:42
Original issue reported on code.google.com by
osei...@gmail.com
on 8 Mar 2013 at 3:42