首先,我是OSMdroid的新手。 我知道在这个主题上还有其他类似的问题,但最近没有问题,旧问题的答案对我的代码不起作用......
我无法使用OSMDroid获取当前位置。 我使用了github上提供的简单教程和之前问题中给出的建议。 我有最新版本的OSMDroid但是当我尝试为当前位置添加标签时,没有任何内容出现。
我甚至没有收到错误,地图只显示当前位置没有标记。救命!这是我的代码。
任何帮助都会非常感激,因为它很烦人!
Java Class
@Override public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Context ctx = getApplicationContext();
//important! set your user agent to prevent getting banned from the osm servers
Configuration.getInstance().load(ctx,
PreferenceManager.getDefaultSharedPreferences(ctx));
setContentView(R.layout.activity_map);
mMapView = (MapView) findViewById(R.id.mapview);
mMapView.setTileSource(TileSourceFactory.MAPNIK);
mMapView.setBuiltInZoomControls(true);
mMapView.setMultiTouchControls(true);
IMapController mapController = mMapView.getController();
mapController.setZoom(9);
GeoPoint startPoint = new GeoPoint(52.1237453, 6.9293683);
mapController.setCenter(startPoint);
this.mLocationOverlay = new MyLocationNewOverlay(new GpsMyLocationProvider(ctx),mMapView);
this.mLocationOverlay.enableMyLocation();
mMapView.getOverlays().add(this.mLocationOverlay);
XML代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<org.osmdroid.views.MapView
android:id="@+id/mapview"
android:layout_width="match_parent"
android:layout_height="match_parent"
tilesource="Mapnik" />
</LinearLayout>
答案 0 :(得分:2)
两个可能的原因。
1)您的清单缺少ACCESS_FINE_LOCATION
2)如果目标SDK是23或更新,您必须在创建GpsMyLocationProvider
之前询问用户级别的GPS权限
osmdroid示例应用程序的源代码中有两个示例,位于此处: https://github.com/osmdroid/osmdroid/blob/master/OpenStreetMapViewer/src/main/java/org/osmdroid/intro/PermissionsFragment.java#L94
在这里: