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


JavaScript ArcGIS projection.project用法及代码示例


基本信息

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

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

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

对象: esri/geometry/projection

自从:用于 JavaScript 4.7 的 ArcGIS API

用法说明

projection.project函数(或属性)的定义如下:

project (geometry, outSpatialReference, geographicTransformation) {Geometry|Geometry[]}


将几何图形或几何图形数组投影到指定的输出空间参考。如果未明确提供但需要,则使用默认地理变换。使用 getTransformation() 方法找出给定输入和输出空间参考默认使用的变换。

请注意,您必须在尝试投影几何图形之前加载此模块。

已知限制

此方法使用第一个几何图形的空间参考作为输入空间参考。因此,阵列中的所有几何图形必须具有相同的空间参考。

参数:

类型说明
geometry Geometry|Geometry[]

要投影的几何图形。

outSpatialReference SpatialReference autocast
来自 Object

将几何坐标转换到的空间参考。

geographicTransformation GeographicTransformation
可选的

用于变换几何的地理变换。当默认变换不适合您的要求时,指定此参数以投影几何。

返回:

类型 说明
Geometry | Geometry[] 如果将几何数组用作输入,则结果将是一个数组。如果将单个几何用作输入,它将是单个几何。

例子:

// projects each polygon in the array
// project() will use the spatial reference of the first geometry in the array
// as an input spatial reference. It will use the default transformation
// if one is required when converting from input spatial reference
// to the output spatial reference
let outSpatialReference = new SpatialReference({
  wkid: 53008 //Sphere_Sinusoidal projection
});
polygonGraphics.forEach(function(graphic) {
  graphic.geometry = projection.project(graphic.geometry, outSpatialReference);
});
let outSpatialReference = {
  wkid: 54044
};
// projects an array of points
let projectedPoints = projection.project(wgsPoints, outSpatialReference);
projectedPoints.forEach(function(point) {
  console.log(point.x, point.y);
});

相关用法


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