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


JavaScript ArcGIS VectorTileLayer.url用法及代码示例


基本信息

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

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

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

类: esri/layers/VectorTileLayer

继承: VectorTileLayer > Layer > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

VectorTileLayer.url函数(或属性)的定义如下:

url String


矢量切片服务的 URL,或用于渲染图层的矢量切片样式资源的 URL。如果指定样式的 URL,则从样式对象中指定的图块服务器获取图块。

例子:

// URL to the vector tile service
let layer = new VectorTileLayer({
  url: "https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer"
});
// URL to the style of vector tiles
let layer = new VectorTileLayer({
  url: "https://esri.maps.arcgis.com/sharing/rest/content/items/7dc6cea0b1764a1f9af2e679f642f0f5/resources/styles/root.json"
});

相关用法


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