Search code examples
androidmapsopenstreetmaposmdroid

How to Add Marker in osmdroid?


I am working on OpenStreetMap. I can add this map and get the current position. But, I can't set a mark my position. I use drawable file but I can't see this mark.

This my Android source:

            map = (MapView) findViewById(R.id.map);
            map.setTileSource(TileSourceFactory.MAPNIK);
            map.setMultiTouchControls(true);
            IMapController mapController = map.getController();
            mapController.setZoom(16);

            GeoPoint  currentLocation = new GeoPoint(lat,lon);
            mapController.setCenter(currentLocation);


            OverlayItem myLocationOverlayItem = new OverlayItem("Here", "Current Position", currentLocation);
            Drawable marker = ContextCompat.getDrawable(getApplication(), R.drawable.markerosm);
            myLocationOverlayItem.setMarker(marker);

markerosm.xml file this:

<?xml version="1.0" encoding="UTF-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <stroke
        android:width="2dp"
        android:color="#FFFFFFFF" />
    <gradient
        android:endColor="#DDBBBBBB"
        android:startColor="#DD777777"
        android:angle="90" />
    <corners
        android:bottomRightRadius="7dp"
        android:bottomLeftRadius="7dp"
        android:topLeftRadius="7dp"
        android:topRightRadius="7dp" />
</shape>

I don't take an error but I can't see. How solve this problem?


Solution

  • GeoPoint startPoint = new GeoPoint(20.5992, 72.9342);
    Marker startMarker = new Marker(mapView);
    startMarker.setPosition(startPoint);
    startMarker.setAnchor(Marker.ANCHOR_CENTER, Marker.ANCHOR_BOTTOM);
    mapView.getOverlays().add(startMarker);