當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。