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


JavaScript ArcGIS Locate.scale用法及代码示例


基本信息

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

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

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

类: esri/widgets/Locate

继承: Locate > Widget > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

Locate.scale函数(或属性)的定义如下:

scale Number


自从:ArcGIS 适用于 JavaScript 4.7 的 API

指示从跟踪事件返回位置后导航到地理定位结果的位置时要在视图上设置的比例。如果未显式设置比例值,则视图将导航到默认比例 2500 。对于 2D 视图,该值应在 effectiveMinScaleeffectiveMaxScale 范围内。

默认值:null

例子:

mapView.watch("scale", function (currentScale){
  console.log("scale: %s", currentScale);
});

mapView.when(function(){
  // Create an instance of the Locate widget
  let locateWidget = new Locate({
    view: mapView,
    scale: 5000
  });

  // and add it to the view's UI
  mapView.ui.add(locateWidget, "top-left");

  locateWidget.locate();

  locateWidget.on("locate", function(locateEvent){
    console.log(locateEvent);
    console.log("locate: %s", mapView.scale);
  })
});

相关用法


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