看看MyLocationOverlay - 有谁知道它们之间有什么区别:
public GeoPoint getMyLocation();
public android.location.Location getLastFix();
(除了返回类型)? getMyLocation()方法是否仅在找到位置后返回值,并且getLastFix()将返回缓存的最后一个修复,可能来自不同的会话?
答案 0 :(得分:3)
根据文档都与most-recently-set user location
相关,所以我要说两者都返回上次缓存的位置,而getMyLocation
只提供从Location
到GeoPoint
的类型转换