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


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


基本信息

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

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

definitionExpression String


SQL where 子句用于过滤客户端上的函数。只有满足定义表达式的特征才会显示在 View 中。定义表达式可以在图层加载到视图之前或添加到Map之后构建时设置。如果在图层添加到Map后设置了定义表达式,视图将自动刷新以显示满足新定义表达式的要素。

例子:

// Set definition expression in constructor to only display earthquakes magnitude 5.0 and greater
const layer = new GeoJSONLayer({
  url: "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_month.geojson",
  definitionExpression: "mag >= 5"
});
// Set the definition expression directly on layer instance after it has loaded
layer.definitionExpression = "mag >= 5";

相关用法


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