@JsType(isNative=true,
namespace="Cesium",
name="TerrainProvider")
public interface TerrainProvider
Modifier and Type | Method and Description |
---|---|
double |
getLevelMaximumGeometricError(int level)
Gets the maximum geometric error allowed in a tile at a given level.
|
boolean |
getTileDataAvailable(int x,
int y,
int level)
Determines whether data for a tile is available to be loaded.
|
Promise<TerrainData,Void> |
requestTileGeometry(int x,
int y,
int level,
Request request)
Requests the geometry for a given tile.
|
@JsMethod double getLevelMaximumGeometricError(int level)
level
- The tile level for which to get the maximum geometric error.@JsMethod boolean getTileDataAvailable(int x, int y, int level)
x
- The X coordinate of the tile for which to request geometry.y
- The Y coordinate of the tile for which to request geometry.level
- The level of the tile for which to request geometry.@JsMethod Promise<TerrainData,Void> requestTileGeometry(int x, int y, int level, Request request)
x
- The X coordinate of the tile for which to request geometry.y
- The Y coordinate of the tile for which to request geometry.level
- The level of the tile for which to request geometry.request
- The request object. Intended for internal use only.Copyright © 2019. All rights reserved.