SDK JS
    Preparing search index...

    Interface I3sPointPickedFeature

    A picked Point FEATURE: its objectId (best-effort, from an *object*id* attribute), its feature ordinal within the node, and every per-feature attribute value (keyed by I3S field name). Returned by I3sPointLayer.pickFeature.

    interface I3sPointPickedFeature {
        featureOrdinal: number;
        fields: Record<string, number | string | null>;
        objectId: string | number | null;
    }
    Index

    Properties

    featureOrdinal: number

    The feature's ordinal within its node (0-based).

    fields: Record<string, number | string | null>

    Every per-feature attribute value, keyed by I3S field name (null for a missing value).

    objectId: string | number | null

    Best-effort object id from an *object*id* attribute, or null if the feature has none.