Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Annotation order vs click priority inverted for android #563

@felix-ht

Description

@felix-ht

Currently Click priorities are the inverse of how layers are stacked.

annotationOrder : [
      AnnotationType.circle,
      AnnotationType.line,
      AnnotationType.symbol,
      AnnotationType.fill,
]

std
Circle drawn under line but hit detection works as expected.

annotationOrder : [
        AnnotationType.fill,
        AnnotationType.line,
        AnnotationType.circle,
        AnnotationType.symbol,
]

Layer order is OK but hit detection targets object at the bottom.
inverse

iOS seems to work correctly.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions