url | Object | <optional>
| | the url to the parent tileset.json |
pathParams | Object | <optional>
| | optional, path params to add to individual tile urls (starts with "?"). |
geometricErrorMultiplier | Object | <optional>
| | the geometric error of the parent. 1.0 by default corresponds to a maxScreenSpaceError of 16 |
loadOutsideView | Object | <optional>
| | if truthy, tiles otside the camera frustum will be loaded with the least possible amount of detail |
tileLoader | Object | <optional>
| | A tile loader that can be shared among tilesets in order to share a common cache. |
pointsCallback | Object | <optional>
| | A callback function that will be called on every points |
onLoadCallback | Object | <optional>
| | A callback function that will be called when the root tile has been loaded |
occlusionCullingService | Object | <optional>
| | A service that handles occlusion culling |
centerModel | Object | <optional>
| | If true, the tileset will be centered on 0,0,0 and in the case of georeferenced tilesets that use the "region" bounding volume, it will also be rotated so that the up axis matched the world y axis. |
static | Object | <optional>
| | If true, the tileset is considered static which improves performance but the tileset cannot be moved |
rootPath | Object | <optional>
| | optional the root path for fetching children |
json | Object | <optional>
| | optional json object representing the tileset sub-tree |
parentGeometricError | Object | <optional>
| | optional geometric error of the parent |
parentBoundingVolume | Object | <optional>
| | optional bounding volume of the parent |
parentRefinement | Object | <optional>
| | optional refinement strategy of the parent of the parent |
cameraOnLoad | Object | <optional>
| | optional the camera used when loading this particular sub-tile |
parentTile | Object | <optional>
| | optional the OGC3DTile object that loaded this tile as a child |
domWidth | Number | <optional>
| 1000 | optional the canvas width (used to calculate geometric error). If a renderer is provided, it'll be used instead, else a default value is used. |
domHeight | Number | <optional>
| 1000 | optional the canvas height (used to calculate geometric error). If a renderer is provided, it'll be used instead, else a default value is used. |
renderer | Object | <optional>
| | optional the renderer is used to infer the canvas size and compute tiles geometric error. |
distanceBias | Number | <optional>
| | optional a bias that allows loading more or less detail closer to the camera relative to far away. The value should be a positive number. A value below 1 loads less detail near the camera and a value above 1 loads more detail near the camera. This needs to be compensated by the geometricErrorMultiplier in order to load a reasonable number of tiles. |