属性概述
名称 | 类型 | 描述 | 类 |
---|---|---|---|
String | 指定要显示的当前测量工具。 更多详情 | MeasurementViewModel | |
AreaMeasurement2DViewModel|AreaMeasurement3DViewModel|DirectLineMeasurement3DViewModel|DistanceMeasurement2DViewModel | 查看活动测量微件的模型。 更多详情 | MeasurementViewModel | |
SystemOrAreaUnit | 单位系统(英制、公制)或显示面积值的特定单位。 更多详情 | MeasurementViewModel | |
String | 类的名称。 更多详情 | Accessor | |
SystemOrLengthUnit | 单位系统(英制、公制)或用于显示距离值的特定单位。 更多详情 | MeasurementViewModel | |
String | ViewModel 的状态。 更多详情 | MeasurementViewModel | |
MapView|SceneView | 更多详情 | MeasurementViewModel |
属性详细信息
-
activeTool String
-
指定要显示的当前测量工具。将其值设置为
area
可激活面积测量工具,并且该工具适用于 MapView 和 SceneView。要在 MapView 中测量距离,请将该属性设置为distance
;如在 SceneView 中进行测量,可将其设置为direct-line
。如果未设置此属性,则不会显示微件。可能值:"area"|"distance"|"direct-line"
- 默认值:null
示例// To create the Measurement widget with SceneView's linear measurement widget active. let measurement = new Measurement({ viewModel: { view: view, activeTool: "direct-line" } });
-
查看活动测量微件的模型。
示例// Print the active view model to the console. let measurement = new Measurement({ viewModel: { areaUnit: "square-us-feet", view: view, activeTool: "area" } }); console.log("Active ViewModel: ", measurement.viewModel.activeViewModel);
-
areaUnit SystemOrAreaUnit
-
单位系统(英制、公制)或显示面积值的特定单位。可能的值为:
metric
、imperial
、square-inches
、square-feet
、square-us-feet
、square-yards
、square-miles
、square-meters
、square-kilometers
、acres
、ares
、hectares
。示例// To create the Measurement widget that displays area in square US feet let measurement = new Measurement({ viewModel: { areaUnit: "square-us-feet", view: view, activeTool: "area" } }); // To display the current measurement unit for area console.log("Current unit: ", measurement.viewModel.areaUnit);
-
类的名称。声明的类名称格式化为
geoscene.folder.className
。
-
linearUnit SystemOrLengthUnit
-
单位系统(英制、公制)或用于显示距离值的特定单位。可能的值为:
metric
、imperial
、inches
、feet
、us-feet
、yards
、miles
、nautical-miles
、meters
、kilometers
。示例// To create the Measurement widget that displays distance in yards let measurement = new Measurement({ viewModel: { linearUnit: "yards", view: view, activeTool: "distance" } }); // To display the current measurement unit for distance console.log('Current unit: ', measurement.viewModel.linearUnit);
-
state Stringreadonly
-
ViewModel 的状态。
值 描述 disabled 尚未准备就绪 ready 准备测量 measuring 测量已开始 measured 测量已完成 可能值:"disabled"|"ready"|"measuring"|"measured"
- 默认值:disabled
示例// To display the state of the AreaMeasurement2D widget let measurement = new Measurement({ view: view, activeTool: "area" }); measurement.watch("viewModel.state", function(state){ console.log("Current state: ", state); });
-
示例
// Add the measurement widget to the upper right hand corner. const measurement = new Measurement({ viewModel: { view: view, activeTool = "distance"; } }); view.ui.add(measurement, "top-right");
方法概述
名称 | 返回值类值 | 描述 | 类 |
---|---|---|---|
添加一个或多个与对象的生命周期相关联的句柄。 更多详情 | Accessor | ||
Boolean | 如果存在指定的句柄组,则返回 true。 更多详情 | Accessor | |
移除对象拥有的句柄组。 更多详情 | Accessor |
方法详细说明
-
addHandles(handleOrHandles, groupKey)inherited起始版本:GeoScene Maps SDK for JavaScript 4.25
-
添加一个或多个与对象的生命周期相关联的句柄。当对象被销毁时,将移除句柄。
// Manually manage handles const handle = reactiveUtils.when( () => !view.updating, () => { wkidSelect.disabled = false; }, { once: true } ); // Handle gets removed when the object is destroyed. this.addHandles(handle);
参数handleOrHandles WatchHandle|WatchHandle[]对象销毁后,标记为要移除的句柄。
groupKey *optional标识句柄应添加到的组的键。组中的所有句柄稍后都可使用 Accessor.removeHandles() 进行删除。如果未提供键,则句柄将被添加到默认组。
-
起始版本:GeoScene Maps SDK for JavaScript 4.25
-
如果存在指定的句柄组,则返回 true。
参数groupKey *optional组键。
返回类型 描述 Boolean 如果存在指定的句柄组,则返回 true
。示例// Remove a named group of handles if they exist. if (obj.hasHandles("watch-view-updates")) { obj.removeHandles("watch-view-updates"); }
-
removeHandles(groupKey)inherited起始版本:GeoScene Maps SDK for JavaScript 4.25
-
移除对象拥有的句柄组。
参数groupKey *optional要移除的组键或组键的数组或集合。
示例obj.removeHandles(); // removes handles from default group obj.removeHandles("handle-group"); obj.removeHandles("other-handle-group");