I have different annotations (with icons) which sometimes overlap in the map. Is there any way to specify the elevation of the annotations to have some annotations always displayed over the others? As of right now it looks like there is no rule on how the annotations overlap each other, it appears to be almost random.
The annotation is created like this:
pointAnnotationManager = mapView.annotations.createPointAnnotationManager()
pointAnnotationManager.apply {
annotationPosition = create(
PointAnnotationsOptions()
.withPoint(some_point)
.withIconImage(some_bitmap)
)
}
and updated (each second) with
annotationPosition.point = new_point
pointAnnotationManager.update(annotationPosition)
I searched the API ref. of pointAnnotationManager but did not find anything about it