Interface Tile3DModelLoaderOptions

Advanced loader options

interface Tile3DModelLoaderOptions {
    coordinateTransform: {
        ecefToEnuMatrix: Matrix4;
        ecefToLocalMatrix: Matrix4;
        enuToEcefMatrix: Matrix4;
        enuToLocalMatrix: Matrix4;
        localToEcefMatrix: Matrix4;
        localToEnuMatrix: Matrix4;
    };
    fetcher: Fetcher;
    groundHeight: number;
    name: string;
    onError?: ((error: Error) => void);
    referer: string;
    search?: string;
    type: "point_cloud" | "mesh";
    upAxis: string;
    url: string;
}

Properties

coordinateTransform: {
    ecefToEnuMatrix: Matrix4;
    ecefToLocalMatrix: Matrix4;
    enuToEcefMatrix: Matrix4;
    enuToLocalMatrix: Matrix4;
    localToEcefMatrix: Matrix4;
    localToEnuMatrix: Matrix4;
}
fetcher: Fetcher
groundHeight: number
name: string
onError?: ((error: Error) => void)
referer: string
search?: string
type: "point_cloud" | "mesh"
upAxis: string
url: string