-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Description
Feature
The function to create tilesets from reality data IDs currently uses Cesium3DTileset.fromUrl
to create the tileset, and passes in some default constructor options for the tileset. This means that it is not possible to pass in custom options into a reality data tileset.
We should consider to allow users to pass in additional options through the createTilesetForRealityDataId
function.
The tileset ConstructorOptions
are ... overwhelming, and one could make the strong case to try and not increase the API surface area here. Specifically, there may be options that ...
- do not have to be constructor options. but can be set on the resulting tileset directly
- or that do not make sense for a reality data tilesets
and it might be worthwhile to identify the options that should really be available via the createTilesetForRealityDataId
function. But for now, this issue is rather about the broader question whether it should be possible to pass in additional options to this function at all.