interface MapViewHitTestResultItem {
    graphic: Record<string, unknown>;
    layer?: Record<string, unknown>;
    mapPoint?: MapViewMapPoint;
    type: "graphic";
}

Properties

graphic: Record<string, unknown>
layer?: Record<string, unknown>
mapPoint?: MapViewMapPoint
type