English中文

Cesium3DTilesTerrainData

new Cesium.Cesium3DTilesTerrainData(options)

单个图块的地形数据,其中地形数据表示为 glb(二进制 glTF)。 Terrain data for a single tile where the terrain data is represented as a glb (binary glTF).
名称 Name 类型 Type 说明 Description
options object 具有以下属性的对象: Object with the following properties:
名称 Name 类型 Type 默认值 Default 说明 Description
gltf Object.<string, *> 解析后的 glTF JSON。 The parsed glTF JSON.
minimumHeight number 瓦片内的最小地形高度(以米为单位)高于椭球体。 The minimum terrain height within the tile, in meters above the ellipsoid.
maximumHeight number 瓦片内的最大地形高度(以米为单位)高于椭球体。 The maximum terrain height within the tile, in meters above the ellipsoid.
boundingSphere BoundingSphere 包围网格中所有顶点的球体。 A sphere bounding all of the vertices in the mesh.
orientedBoundingBox OrientedBoundingBox 包含网格中所有顶点的定向边界框。 An oriented bounding box containing all of the vertices in the mesh.
horizonOcclusionPoint Cartesian3 网格的地平线遮挡点。如果该点位于地平线以下,则假定整个图块也位于地平线以下。该点以椭球坐标表示。 The horizon occlusion point of the mesh. If this point is below the horizon, the entire tile is assumed to be below the horizon as well. The point is expressed in ellipsoid-scaled coordinates.
skirtHeight number 添加到图块边缘的裙边高度。 The height of the skirt to add on the edges of the tile.
requestVertexNormals boolean false 可选 optional 指示是否应加载法线。 Indicates whether normals should be loaded.
requestWaterMask boolean false 可选 optional 指示是否应加载水掩模数据。 Indicates whether water mask data should be loaded.
credits Array.<Credit> 可选 optional 该图块的制作人员名单。 Array of credits for this tile.
childTileMask number 15 可选 optional 一个位掩码,指示该图块的四个子级中存在哪一个。如果设置了子位,则在需要时也会请求该图块的几何形状。如果该位被清除,则不会请求子图块,而是从父图块对几何图形进行上采样。位值如下: A bit mask indicating which of this tile's four children exist. If a child's bit is set, geometry will be requested for that tile as well when it is needed. If the bit is cleared, the child tile is not requested and geometry is instead upsampled from the parent. The bit values are as follows:
位位置 Bit Position位值 Bit Value儿童瓷砖 Child Tile
01Southwest
12Southeast
24Northwest
38Northeast
waterMask Uint8Array 可选 optional 含有水掩模的缓冲液。 The buffer containing the water mask.
实验性 Experimental

此功能不是最终版本,可能会在没有 Cesium 标准弃用政策的情况下进行更改。 This feature is not final and is subject to change without Cesium's standard deprecation policy.

另见: See:

成员 Members

该图块的一系列制作人员名单。 An array of credits for this tile.

waterMask : Uint8Array|HTMLImageElement|HTMLCanvasElement|ImageBitmap|undefined

该地形数据中包含的水掩模(如果有)。水蒙版是一个矩形 Uint8Array 或图像,其中值 255 表示水,值 0 表示陆地。 0 到 255 之间的值也允许在陆地和水之间平滑地混合。 The water mask included in this terrain data, if any. A water mask is a rectangular Uint8Array or image where a value of 255 indicates water and a value of 0 indicates land. Values in between 0 and 255 are allowed as well to smoothly blend between land and water.

方法 Methods

interpolateHeight(rectangle, longitude, latitude)number|undefined

返回指定经度和纬度处的地形高度,如果网格未定义,则返回未定义的高度。 Returns the terrain height at a specified longitude and latitude, or undefined if the mesh is undefined.
名称 Name 类型 Type 说明 Description
rectangle Rectangle 该地形数据覆盖的矩形。 The rectangle covered by this terrain data.
longitude number 以弧度表示的经度。 The longitude in radians.
latitude number 以弧度为单位的纬度。 The latitude in radians.
返回: Returns:
指定位置处的地形高度,如果网格未定义则为未定义。如果位置位于矩形之外,此方法将推断高度,这对于远离矩形之外的位置可能非常不正确。 The terrain height at the specified position, or undefined if the mesh is undefined. If the position is outside the rectangle, this method will extrapolate the height, which is likely to be wildly incorrect for positions far outside the rectangle.

isChildAvailable(thisX, thisY, childX, childY)boolean

根据以下条件确定给定的子图块是否可用 Determines if a given child tile is available, based on the TerrainData#childTileMask。假定给定的子图块坐标是该图块的四个子图块之一。如果给出非子图块坐标,则返回东南子图块的可用性。 . The given child tile coordinates are assumed to be one of the four children of this tile. If non-child tile coordinates are given, the availability of the southeast child tile is returned.
名称 Name 类型 Type 说明 Description
thisX number 此(父)图块的图块 X 坐标。 The tile X coordinate of this (the parent) tile.
thisY number 此(父)图块的图块 Y 坐标。 The tile Y coordinate of this (the parent) tile.
childX number 用于检查可用性的子图块的图块 X 坐标。 The tile X coordinate of the child tile to check for availability.
childY number 用于检查可用性的子图块的图块 Y 坐标。 The tile Y coordinate of the child tile to check for availability.
返回: Returns:
如果子图块可用,则为 True;否则为假。 True if the child tile is available; otherwise, false.

upsample(tilingScheme, thisX, thisY, thisLevel, descendantX, descendantY, descendantLevel)Promise.<TerrainData>|undefined

对该地形数据进行上采样以供后代图块使用。 Upsamples this terrain data for use by a descendant tile.
名称 Name 类型 Type 说明 Description
tilingScheme TilingScheme 该地形数据的切片方案。 The tiling scheme of this terrain data.
thisX number 切片方案中该切片的 X 坐标。 The X coordinate of this tile in the tiling scheme.
thisY number 切片方案中该切片的 Y 坐标。 The Y coordinate of this tile in the tiling scheme.
thisLevel number 该切片在切片方案中的级别。 The level of this tile in the tiling scheme.
descendantX number 我们正在对其进行上采样的后代切片的切片方案中的 X 坐标。 The X coordinate within the tiling scheme of the descendant tile for which we are upsampling.
descendantY number 我们要对其进行上采样的后代切片的切片方案中的 Y 坐标。 The Y coordinate within the tiling scheme of the descendant tile for which we are upsampling.
descendantLevel number 我们正在对其进行上采样的后代切片的切片方案中的级别。 The level within the tiling scheme of the descendant tile for which we are upsampling.
返回: Returns:
对后代图块的上采样地形数据的承诺,或者如果尚未调用 createMesh 或正在进行太多异步上采样操作且请求已推迟,则为未定义。 A promise for upsampled terrain data for the descendant tile, or undefined if createMesh has not been called yet or too many asynchronous upsample operations are in progress and the request has been deferred.

wasCreatedByUpsampling()boolean

获取一个值,该值指示此地形数据是否是通过对较低分辨率地形数据进行上采样而创建的。如果该值为 false,则数据是从其他来源获取的,例如从远程服务器下载。对于从调用返回的实例,此方法应返回 true Gets a value indicating whether or not this terrain data was created by upsampling lower resolution terrain data. If this value is false, the data was obtained from some other source, such as by downloading it from a remote server. This method should return true for instances returned from a call to Cesium3DTilesTerrainData#upsample.
返回: Returns:
如果此实例是通过上采样创建的,则为 True;否则为假。 True if this instance was created by upsampling; otherwise, false.
需要帮助吗?获得答案的最快方法是从社区和团队那里获得答案 Need help? The fastest way to get answers is from the community and team on the Cesium Forum.