I am creating a map based application where i show pings based on a latitude/longitude service
mMap.addMarker(new MarkerOptions()
.position(mLatLng)
.title("" + name)
.snippet("" + pingDate)
.icon(BitmapDescriptorFactory.fromBitmap(icon)));
According to google map v2 api, markers are drawn in a top to down approach, so my pings gets hidden if there are fully/partially above each other.
My question is, can i change the Z-Order axis or anything by which i can change the z position of a marker ?
Such that if i have two types of pings, i want to show one type of ping always on top irrespective of its coordinates