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


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


基本信息

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

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.load函数(或属性)的定义如下:

load () {Promise}


加载该模块的依赖项。必须在投影几何图形之前调用此方法。

返回:

类型 说明
Promise 在加载依赖项时解析。

例子:

projection.load().then(function() {
  // the projection module is loaded. Geometries can be re-projected.

 // 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);
 });
});

相关用法


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