我有一张地图,目前我经常从用户的GPS位置在地图上放置一个自定义图钉,这也取决于他们的位置何时改变,但GPS在这里有点不连贯它非常多。目前,每次发生这种情况时,都会在地图上放置一个新引脚。我想删除之前的引脚,以便在地图上显示用户位置的一个引脚,就像用户位置的实时表示一样。
除此之外。是否可以在地图上设置一组单独的引脚(它们的位置永远不会改变),并确保在更新用户位置时也不会清除它们。
对此代码的任何其他评论将不胜感激。
Imports...
public class MapOne extends MapActivity implements LocationListener {
... fields
@Override
protected void onCreate(Bundle icicle) {
....onCreate initialisations
}
@Override
protected void onPause() {
// TODO Auto-generated method stub
compass.disableCompass();
lm.removeUpdates(this);
super.onPause();
}
@Override
protected void onResume() {
// TODO Auto-generated method stub
compass.enableCompass();
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000, 20, this);
super.onResume();
}
@Override
protected boolean isRouteDisplayed() {
return false;
}
public void onLocationChanged(Location l) {
// TODO Auto-generated method stub
lat = (int)(l.getLatitude() *1E6);
longi = (int)(l.getLongitude() *1E6) ;
GeoPoint ourLocation = new GeoPoint(lat, longi);
OverlayItem overlayItem = new OverlayItem(ourLocation, "Hey!", "What's up!?");
CustomPinpoint custom = new CustomPinpoint(customMarker, Map.this);
custom.insertPinpoint(overlayItem);
overlayList.add(custom);
}
}
如果需要,可以将Pinpoint类作为参考。
public class Pinpoint extends ItemizedOverlay<OverlayItem> {
private ArrayList<OverlayItem> pinpoints = new ArrayList<OverlayItem>();
private Context c;
public CustomPinpoint(Drawable defaultMarker) {
super(boundCenter(defaultMarker));
// TODO Auto-generated constructor stub
}
public CustomPinpoint(Drawable m, Context context) {
// TODO Auto-generated constructor stub
this(m);
setC(context);
}
@Override
protected OverlayItem createItem(int i) {
// TODO Auto-generated method stub
return pinpoints.get(i);
}
@Override
public int size() {
// TODO Auto-generated method stub
return pinpoints.size();
}
public void insertPinpoint(OverlayItem item) {
pinpoints.add(item);
this.populate();
}
public Context getC() {
return c;
}
public void setC(Context c) {
this.c = c;
}
}
答案 0 :(得分:0)
如果要添加跟随用户当前位置的Pin,可以使用com.google.android.maps.MyLocationOverlay ....这也为您提供了所需的侦听器。您还可以覆盖其onDraw()绘制自定义pin的方法。然后你可以像任何其他覆盖一样添加这个叠加...不要忘记调用myLocationOverlay.enableMyLocation()以便你接收位置变化。