SDK JS
    Preparing search index...

    Interface I3sPickedFeature

    A picked I3S 3DObject feature: its object id (if any), the per-node feature ordinal, and the full per-feature attribute set (keyed by I3S field name). Returned by I3sMeshLayer.pickFeature.

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

    Properties

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