interface SelectStreamingOptions {
    fetchArrayBuffer: (url: string) => Promise<ArrayBuffer>;
    maxScreenSpaceError: number;
    resolveUrl: (uri: string, baseUri: string) => string;
    subtreeCache: Map<string, SubtreeAvailability>;
}

Properties

fetchArrayBuffer: (url: string) => Promise<ArrayBuffer>
maxScreenSpaceError: number
resolveUrl: (uri: string, baseUri: string) => string
subtreeCache: Map<string, SubtreeAvailability>

Persisted across calls so each .subtree is fetched and parsed once.