OSM - 使用自定义图标显示当前位置

时间:2017-11-03 10:09:37

标签: android openstreetmap osmdroid

有谁能告诉我如何在自定义图标的OSM地图上显示我当前的位置?

1 个答案:

答案 0 :(得分:2)

使用默认人物图标::

MyLocationNewOverlay myLocationoverlay = new MyLocationNewOverlay(mapView);
myLocationoverlay.enableFollowLocation();
myLocationoverlay.enableMyLocation();
mapView.getOverlays().add(myLocationoverlay);

使用自定义图标::

MyLocationNewOverlay myLocationoverlay = new MyLocationNewOverlay(mapView);
myLocationoverlay.enableFollowLocation();
 Drawable currentDraw = ResourcesCompat.getDrawable(getResources(), R.mipmap.ic_launcher, null);
            Bitmap currentIcon = null;
            if (currentDraw != null) {
                currentIcon = ((BitmapDrawable) currentDraw).getBitmap();
            }
myLocationoverlay.enableMyLocation();
mapView.getOverlays().add(myLocationoverlay);

我正在使用更新的OSM依赖

compile 'org.osmdroid:osmdroid-android:5.6.5'