Conversion

AMD: require(["geoscene/widgets/CoordinateConversion/support/Conversion"], (Conversion) => { /* 代码 */ });
ESM: import Conversion from "@geoscene/core/widgets/CoordinateConversion/support/Conversion";
类: geoscene/widgets/CoordinateConversion/support/Conversion
继承于: Conversion Accessor
起始版本: GeoScene API for JavaScript 4.22

Conversion 类表示坐标转换微件中的一种转换。每个转换都由微件中的一行表示。

示例:

构造函数

new Conversion(properties)
参数:
properties Object
optional

所有可传入构造函数的属性,请参见属性列表

示例代码:
const ccWidget = new CoordinateConversion({
   view: view
});

const newFormat = new Format({
   // add new conversion format here
});

// add our new format to the widget's dropdown
ccWidget.formats.add(newFormat);

const newConversion = new Conversion({
   format: newFormat
});

// add the custom format to the top of the widget's display
ccWidget.conversions.splice(0, newConversion);

属性列表

可以设置、检索或监听的属性。参见 使用属性
展示继承属性 隐藏继承属性
属性 类型 描述
String更多信息

类名。

更多信息Accessor
String更多信息

一个基于当前位置的格式化字符串并在格式上显示信息。

更多信息Conversion
Format更多信息

此转换的格式

更多信息Conversion
Position更多信息

position 属性包含此转换的位置信息。

更多信息Conversion

属性详细说明

declaredClass Stringreadonly inherited

类名。类的名称声明格式为 geoscene.folder.className

displayCoordinate Stringreadonly

一个基于当前位置的格式化字符串并在格式上显示信息。

format Format

此转换的格式。格式包含详细说明应如何执行转换以及如何显示转换的信息。

position Position

position 属性包含此转换的位置信息。

类型定义

Position

用一个位置、一个和一个坐标、一个字符串来描述一个点。

属性:
location Point

表示转换描述的位置的点几何。

coordinate String

表示位置的字符串。

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.