我正在开发一个显示带有用户位置的地图的 Android 应用程序,到目前为止,我能够在线和离线显示地图。现在我想知道如何使用 osmdroid 中的标记绘制一个精确圆MylocationOverlay
?
这是我的代码:
public class AhmedActivity extends Activity
{
/** Called when the activity is first created. */
private MapView mapView;
private MapController mapController;
private ScaleBarOverlay mScaleBarOverlay;
MyLocationOverlay myLocationOverlay = null;
private LocationManager locationManager;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Initialize the location:
locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
initializemap();
/* My location overlay */
/* Create a static Overlay showing a the current location and a compass */
myLocationOverlay = new MyLocationOverlay(this, mapView);
mapView.getOverlays().add(myLocationOverlay);
myLocationOverlay.runOnFirstFix( new Runnable() {
public void run() {
mapController.animateTo( myLocationOverlay
.getMyLocation());
}
});
//Add Scale Bar
mScaleBarOverlay = new ScaleBarOverlay(this);
ScaleBarOverlay myScaleBarOverlay = new ScaleBarOverlay(this);
mScaleBarOverlay.setLineWidth(50);
mapView.getOverlays().add(myScaleBarOverlay);
}
/** (re-)enable location and compass updates */
@Override
public void onResume() {
super.onResume();
myLocationOverlay.enableCompass();
myLocationOverlay.enableMyLocation();
//myLocationOverlay.followLocation(true);
//myLocationOverlay.setDrawAccuracyEnabled(true);
//myLocationOverlay.isDrawAccuracyEnabled();
}
/** disable compass and location updates */
@Override
public void onPause() {
super.onPause();
myLocationOverlay.disableMyLocation();
myLocationOverlay.disableCompass();
}
public void initializemap()
{
mapView = (MapView) this.findViewById(R.id.mapView);
mapView.setTileSource(TileSourceFactory.MAPNIK);
mapView.setBuiltInZoomControls(true);
mapView.setMultiTouchControls(true);
mapController = this.mapView.getController();
mapController.setZoom(12);
mapController.setCenter(new GeoPoint(15.610762,32.540345));
}
}