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


JavaScript ArcGIS coordinateFormatter用法及代码示例


基本信息

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

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

ESM: import * as coordinateFormatter from "@arcgis/core/geometry/coordinateFormatter";

对象: esri/geometry/coordinateFormatter

自从:用于 JavaScript 4.7 的 ArcGIS API

用法说明

例子:

// The latitude/longitude string to be converted
let latlon = "55 56 39.123N 003 09 43.034W"

// Load dependencies of "coordinateFormatter" module
coordinateFormatter.load().then(function() {
  // Once the promise returned by load() is resolved,
  // use the fromLatitudeLongitude() method to convert
  // latitude/longitude string to a point geometry.
  let point = coordinateFormatter.fromLatitudeLongitude(latlon);
});

相关用法


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