bringAnnotationToFront method
Implementation
void bringAnnotationToFront(String annotationId) {
final annotation = _annotations[annotationId];
if (annotation != null) {
final maxZIndex = _annotations.values
.map((a) => a.zIndex)
.fold(0, math.max);
annotation.zIndex = maxZIndex + 1;
}
}