i wanna display user location on mapview and i could it. but i cant update geopoint when user move to another location at this time - when look the map- how can i do that?
List<Overlay> mapOverlays = mapView.getOverlays();
Drawable drawable = this.getResources().getDrawable(resID);
HelloItemizedOverlay itemizedoverlay = new HelloItemizedOverlay(drawable,this);
GeoPoint point = new GeoPoint((int)latd,(int)lond);
OverlayItem overlayitem = new OverlayItem(point, name, name);
itemizedoverlay.addOverlay(overlayitem);
mapOverlays.add(itemizedoverlay);