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


JavaScript ArcGIS Bookmarks.defaultCreateOptions用法及代码示例


基本信息

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

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

ESM: import Bookmarks from "@arcgis/core/widgets/Bookmarks";

类: esri/widgets/Bookmarks

继承: Bookmarks > Widget > Accessor

自从:用于 JavaScript 4.8 的 ArcGIS API

用法说明

Bookmarks.defaultCreateOptions函数(或属性)的定义如下:

defaultCreateOptions BookmarkOptions


自从:ArcGIS 适用于 JavaScript 4.18 的 API

指定如果 editEnabled 设置为 true 则如何创建新书签。可用于在创建书签时启用或禁用基于当前视图的屏幕截图或捕获书签的视点。有关选项的完整列表,请参阅BookmarkOptions

例子:

const bookmarks = new Bookmarks({
   view: view,
   editingEnabled: true,
   // whenever a new bookmark is created, a 100x100 px
   // screenshot of the view will be taken and the rotation, scale, and extent
   // of the view will not be set as the viewpoint of the new bookmark
   defaultCreateOptions: {
     takeScreenshot: true,
     captureViewpoint: false,
     captureTimeExtent: false, // the time extent of the view will not be saved in the bookmark
     screenshotSettings: {
       width: 100,
       height: 100
     }
   }
});

相关用法


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