Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 205x 205x 205x | import Frozen from "../Core/Frozen.js";
import IonImageryProvider from "./IonImageryProvider.js";
import IonWorldImageryStyle from "./IonWorldImageryStyle.js";
/**
* Creates an {@link IonImageryProvider} instance for ion's default global base imagery layer, currently Bing Maps.
*
* @function
*
* @param {object} [options] Object with the following properties:
* @param {IonWorldImageryStyle} [options.style=IonWorldImageryStyle] The style of base imagery, only AERIAL, AERIAL_WITH_LABELS, and ROAD are currently supported.
* @returns {Promise<IonImageryProvider>}
*
* @see Ion
*
* @example
* // Create a Cesium World Imagery base layer with default settings
* try {
* const imageryProvider = await Cesium.createWorldImageryAsync();
* } catch (error) {
* console.log(`There was an error creating world imagery: ${error}`);
* }
*
* @example
* // Create Cesium World Imagery with different style
* try {
* const imageryProvider = await Cesium.createWorldImageryAsync({
* style: Cesium.IonWorldImageryStyle.AERIAL_WITH_LABELS
* });
* } catch (error) {
* console.log(`There was an error creating world imagery: ${error}`);
* }
*/
function createWorldImageryAsync(options) {
options = options ?? Frozen.EMPTY_OBJECT;
const style = options.style ?? IonWorldImageryStyle.AERIAL;
return IonImageryProvider.fromAssetId(style);
}
export default createWorldImageryAsync;
|