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


JavaScript ArcGIS OGCFeatureLayer用法及代码示例


基本信息

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

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

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

类: esri/layers/OGCFeatureLayer

继承: OGCFeatureLayer > Layer > Accessor

自从:用于 JavaScript 4.16 的 ArcGIS API

用法说明

OGCFeatureLayer 类用于根据来自OGC API Features 服务的各个集合创建图层。

以下代码段显示了如何向Map添加新的 OGCFeatureLayer。这网址集合 ID 必须指定以便正确加载图层。

// Add the "countries" collection from an OGC API Feature server.
const countries = new OGCFeatureLayer({
    url: "https://vtp2.geo-solutions.it/geoserver/ogc/features",
    collectionId: "ne:countries50m"
});
map.add(countries);

已知限制

  • OGCFeatureLayer 仅支持在 GeoJSON 中编码的集合项。如果服务器的 conformance 声明不包括 GeoJSON 支持,则不会加载图层。有关 Esri 对 GeoJSON 的支持的详细说明,请参阅 GeoJSONLayer 的文档。
  • 带有数字 GeoJSON 特征 ID 的集合是首选。字符串或字母数字 ID 支持有限的函数,例如,弹出窗口将不可用。

相关用法


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