I am making an android app and I have an image marker (a circle). When it is on the map, the bottom of the circle aligns with the location, rather than the center of the circle. How would I fix this?
mMap!!.addMarker(
MarkerOptions().position(LatLng(location!!.latitude, location!!.longitude)).title("Me").snippet("My Location").icon(
BitmapDescriptorFactory.fromResource(R.drawable.circle)
)
)