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


JavaScript ArcGIS GeoJSONLayer.spatialReference用法及代码示例


基本信息

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

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

ESM: import GeoJSONLayer from "@arcgis/core/layers/GeoJSONLayer";

类: esri/layers/GeoJSONLayer

继承: GeoJSONLayer > Layer > Accessor

自从:用于 JavaScript 4.11 的 ArcGIS API

用法说明

GeoJSONLayer.spatialReference函数(或属性)的定义如下:

spatialReference SpatialReference autocast


图层的空间参考。默认值为 WGS84。可以显式设置此属性以在图层解析GeoJSON 文件时投影经度和纬度坐标。虽然不是必需的,但显式设置图层的空间参考将提高投影到原始数据中坐标使用的空间参考以外的空间参考时的性能。

默认值:SpatialReference.WGS84

例子:

const geoJSONLayer = new GeoJSONLayer({
  url: "example.geojson",
  spatialReference: {
    wkid: 5936
  }
});

相关用法


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