SDK JS
    Preparing search index...

    Interface BillboardPickHit

    Result of a successful PointBillboardRenderer.pick — the feature under the cursor.

    interface BillboardPickHit {
        enu: [number, number, number];
        featureId?: number;
        handle: number;
        localIndex: number;
        symbolId: number;
    }
    Index

    Properties

    enu: [number, number, number]

    Feature position as [east, north, up] in metres, in the tile's ENU frame (dequantized: position·scale + offset).

    featureId?: number

    Per-feature id joined at upload, if featureIds was supplied to PointBillboardRenderer.upload.

    handle: number

    Handle of the tile that owns the picked feature; see PointSymbolHandle.

    localIndex: number

    Index of the feature within that tile (0-based, matches the upload order).

    symbolId: number

    Symbol-class id of the picked feature (0 = default symbol).