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


JavaScript ArcGIS MapView.toScreen用法及代码示例


基本信息

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

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

ESM: import MapView from "@arcgis/core/views/MapView";

类: esri/views/MapView

继承: MapView > View > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

MapView.toScreen函数(或属性)的定义如下:

toScreen (point) {ScreenPoint}


将给定的map point 转换为屏幕点。屏幕点表示相对于视图左上角的像素点。

参数:

类型说明
point Point

点几何。

返回:

类型 说明
ScreenPoint 与给定Map点对应的屏幕点。

例子:

// get the screen point for the specified map point.
const mapPoint = {
  x: -49.97,
  y: 41.73,
  spatialReference:{
     wkid: 4326
  }
};
const screenPoint = mapView.toScreen(mapPoint);

相关用法


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