-
url
String
GeoJSON 文件的 URL。
例子:
// create geojson layer from USGS earthquakes data const layer = new GeoJSONLayer({ url: "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_month.geojson" });
// create a geojson layer from geojson feature collection const geojson = { type: "FeatureCollection", features: [ { type: "Feature", id: 1, geometry: { type: "Polygon", coordinates: [ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] ] }, properties: { prop0: "value0", } } ] }; // create a new blob from geojson featurecollection const blob = new Blob([JSON.stringify(geojson)], { type: "application/json" }); // URL reference to the blob const url = URL.createObjectURL(blob); // create new geojson layer using the blob url const layer = new GeoJSONLayer({ url });
基本信息
以下是所在类或对象的基本信息。
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.url
函数(或属性)的定义如下:
相关用法
- JavaScript ArcGIS GeoJSONLayer.useViewTime用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.minScale用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.createQuery用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.queryFeatureCount用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.orderBy用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.applyEdits用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.maxScale用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.labelingInfo用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.fullExtent用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.refresh用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.featureEffect用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.fields用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.queryFeatures用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.opacity用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.visible用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.when用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.featureReduction用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.on用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.effect用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.queryObjectIds用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.outFields用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.queryExtent用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.spatialReference用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.definitionExpression用法及代码示例
- JavaScript ArcGIS GeoJSONLayer.timeOffset用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 GeoJSONLayer.url。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。