-1

Attached image of map

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

Rakesh kushwaha
  • 609
  • 1
  • 9
  • 20

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
  • 365
  • 2
  • 17