当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript ArcGIS meshUtils.ungeoreference用法及代码示例


基本信息

以下是所在类或对象的基本信息。

AMD: require(["esri/geometry/support/meshUtils"], (meshUtils) => { /* code goes here */ });

ESM: import * as meshUtils from "@arcgis/core/geometry/support/meshUtils";

对象: esri/geometry/support/meshUtils

自从:用于 JavaScript 4.7 的 ArcGIS API

用法说明

meshUtils.ungeoreference函数(或属性)的定义如下:

ungeoreference (vertexAttributes, location, options) {VertexAttributes}


将地理参考顶点投影到笛卡尔坐标系。这对于转换现有场景几何体非常有用,以便可以将其用作生成新 3D 网格的源材料。此方法对网格顶点属性进行操作,并将位置和法线(如果指定)从指定 location 处的地理参考坐标转换为本地 (0, 0, 0) 笛卡尔坐标系。结果数据的单位默认为 location 的空间参考单位。如果坐标系为 WGS84,则默认使用公制单位。结果数据的单位可以在附加的options 中指定,在这种情况下,将自动应用线性单位比例。

参数:

规格:
类型说明
vertexAttributes VertexAttributes

地理参考位置和正常缓冲区。

location Point

位置和法线缓冲区的地理参考位置。

options Object
可选的

其他选项。

规格:
geographic

Boolean

可选的

指示坐标是相对于地球还是投影坐标系进行地理配准。

unit

String

可选的

指示结果数据的单位。线性比例将应用于位置属性以将源数据转换为指定的单位。默认情况下,结果数据的单位将与源空间参考相同。

可能的值"millimeters"|"centimeters"|"decimeters"|"meters"|"kilometers"|"inches"|"feet"|"yards"|"miles"|"nautical-miles"|"us-feet"

返回:

类型 说明
VertexAttributes 局部笛卡尔坐标系中的位置和法线缓冲区。

例子:

let vertexAttributes = meshUtils.ungeoreference(geoVertexAttributes, location);

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 meshUtils.ungeoreference。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。