@arcgis/core
Version:
ArcGIS Maps SDK for JavaScript: A complete 2D and 3D mapping and data visualization API
18 lines (17 loc) • 568 B
TypeScript
/**
* Symbol utilities for the Scene Viewer application.
*
* @internal
* @internal
*/
import type ObjectSymbol3DLayer from "../../symbols/ObjectSymbol3DLayer.js";
/**
* Returns a promise resolving to an array containing the width, height and depth of the object
* symbol layer resource.
*
* @param symbolLayer - the symbol layer.
* @returns an array containing the width, height and depth of the object symbol layer resource.
* @internal
* @internal
*/
export function computeObjectLayerSize(symbolLayer: ObjectSymbol3DLayer): Promise<readonly number[]>;