Currently Click priorities are the inverse of how layers are stacked. ```dart annotationOrder : [ AnnotationType.circle, AnnotationType.line, AnnotationType.symbol, AnnotationType.fill, ] ```  Circle drawn under line but hit detection works as expected. ```dart annotationOrder : [ AnnotationType.fill, AnnotationType.line, AnnotationType.circle, AnnotationType.symbol, ] ``` Layer order is OK but hit detection targets object at the bottom.  iOS seems to work correctly.