Looking at MyLocationOverlay – does anyone know what the difference is between:
public GeoPoint getMyLocation();
public android.location.Location getLastFix();
(besides the return type)? Does the getMyLocation() method return a value only after a location has been found, and the getLastFix() will return a cached last fix, possibly from a different session?
According to the docs both relate to
most-recently-set user location, so I’d say that both returns last cached location, andgetMyLocationjust provides type conversion fromLocationtoGeoPoint.