将几何图形或几何图形数组投影到指定的输出空间参考。如果未明确提供但需要,则使用默认地理变换。使用 getTransformation() 方法找出给定输入和输出空间参考默认使用的变换。
请注意,您必须在尝试投影几何图形之前加载此模块。
已知限制
此方法使用第一个几何图形的空间参考作为输入空间参考。因此,阵列中的所有几何图形必须具有相同的空间参考。
参数:
类型 说明 要投影的几何图形。
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); });
基本信息
以下是所在类或对象的基本信息。
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
函数(或属性)的定义如下:
相关用法
- JavaScript ArcGIS projection.load用法及代码示例
- JavaScript ArcGIS projection.getTransformations用法及代码示例
- JavaScript ArcGIS promiseUtils.eachAlways用法及代码示例
- JavaScript ArcGIS promiseUtils.isAbortError用法及代码示例
- JavaScript ArcGIS promiseUtils.debounce用法及代码示例
- JavaScript ArcGIS promiseUtils.create用法及代码示例
- JavaScript ArcGIS promiseUtils.resolve用法及代码示例
- JavaScript ArcGIS promiseUtils.reject用法及代码示例
- JavaScript promise reject()用法及代码示例
- JavaScript ArcGIS promiseUtils.createAbortError用法及代码示例
- JavaScript ArcGIS predominance.createRenderer用法及代码示例
- JavaScript ArcGIS print.execute用法及代码示例
- JavaScript ArcGIS predominantCategories.predominantCategories用法及代码示例
- JavaScript ArcGIS predominance.getSchemeByName用法及代码示例
- JavaScript ArcGIS predominanceUtils.getPredominanceExpressions用法及代码示例
- JavaScript ArcGIS predominance.cloneScheme用法及代码示例
- JavaScript ArcGIS predominance.getSchemes用法及代码示例
- JavaScript ArcGIS predominance.getSchemesByTag用法及代码示例
- JavaScript parseInt()用法及代码示例
- JavaScript parseFloat()用法及代码示例
- JavaScript performance.now()用法及代码示例
- JavaScript ArcGIS SceneView double-click事件用法及代码示例
- JavaScript ArcGIS geometryEngineAsync.overlaps用法及代码示例
- JavaScript ArcGIS Expand.when用法及代码示例
- JavaScript ArcGIS Sublayer.JoinTableDataSource用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 projection.project。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。