-1

Attached image of map

I want to show my current position marker icon like to the attached image.

Rakesh kushwaha
  • 709
  • 1
  • 10
  • 22

1 Answers1

1

use this to add your custom marker to map

 mGoogleMap.addMarker(new MarkerOptions()
  .position(LATLONG)          
  .icon(BitmapDescriptorFactory.fromBitmap(getMarkerBitmapFromView(R.drawable.yourIcon))));
Mohamad Rostami
  • 420
  • 3
  • 17