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


JavaScript ArcGIS WebMap.thumbnailUrl用法及代码示例


基本信息

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

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

ESM: import WebMap from "@arcgis/core/WebMap";

类: esri/WebMap

继承: WebMap > Map > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

WebMap.thumbnailUrl函数(或属性)的定义如下:

thumbnailUrl String


自从:ArcGIS 适用于 JavaScript 4.14 的 API

用于网络Map的缩略图的 URL。 thumbnailUrl 将默认为与 web Map关联的门户项目的缩略图 URL。可以通过改变缩略图URL并保存网络Map来更新网络Map的缩略图。使用 updateFrom 从指定视图自动更新缩略图。

例子:

webmap.updateFrom(view)
  .then(function() {
    return webmap.save();
  })
  // thumbnail will be updated based on current extent of webmap
  .then(function(portalItem) {
    console.log("Saved to portal", portalItem.id);
  })
  .catch(function(error) {
    console.error("Error saving to portal", error);
  });

相关用法


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