📜  Node.js Mapbox 转发地理编码 API

📅  最后修改于: 2022-05-13 01:56:47.530000             🧑  作者: Mango

Node.js Mapbox 转发地理编码 API

正向地理编码:正向地理编码将文本转换为地理坐标。例如,将 'Indore' 变成 22.7196、75.8577。 Mapbox 在地理编码 API 和其他位置和地图服务中很受欢迎。

Mapbox Forward Geocoding API 的特点:

  1. 它易于上手且易于使用。
  2. 它将文本转换为地理坐标。

请求模块的安装:

  1. 您可以访问安装请求模块的链接。您可以使用此命令安装此软件包。
    npm install request
  2. 安装请求模块后,您可以使用命令在命令提示符中检查您的请求版本。
    npm version request
  3. 现在访问 Mapbox 官方网站并创建一个帐户并获取您的 API KEY。
  4. 之后,您可以创建一个文件夹并添加一个文件,例如 index.js,要运行此文件,您需要运行以下命令。
    node index.js

文件名:index.js

const request = require('request');
var ACCESS_TOKEN = 'YOUR_API_KEY';
  
const forwardGeocoding = function (address) {
  
    var url = 'https://api.mapbox.com/geocoding/v5/mapbox.places/'
            + encodeURIComponent(address) + '.json?access_token='
            + ACCESS_TOKEN + '&limit=1';
  
    request({ url: url, json: true }, function (error, response) {
        if (error) {
            callback('Unable to connect to Geocode API', undefined);
        } else if (response.body.features.length == 0) {
            callback('Unable to find location. Try to '
                     + 'search another location.');
        } else {
  
            var longitude = response.body.features[0].center[0]
            var latitude = response.body.features[0].center[1]
            var location = response.body.features[0].place_name
  
            console.log("Latitude :", latitude);
            console.log("Longitude :", longitude);
            console.log("Location :", location);
        }
    })
}
  
var address = 'Indore'; // Sample data
  
// Function call
forwardGeocoding(address);

运行程序的步骤:

  1. 项目结构将如下所示:
    项目结构
  2. 确保您已使用以下命令安装请求模块:
    npm install request
  3. 使用以下命令运行 index.js 文件:
    node index.js

    上述命令的输出

这就是您可以使用 Mapbox 转发地理编码 API 将文本转换为地理坐标的方式。