Giter Site home page Giter Site logo

mapboxgl-api's Introduction

Encapsulation of mapboxgl API based on

Document Language: δΈ­ζ–‡ | English

Special reminder, please use it in the backend as much as possible, as exposing the access token in the frontend is risky.

1. Installation

npm install @wutiange/mapboxgl-api
// or
yarn add @wutiange/mapboxgl-api

2. Usage

First, import it where needed:

import { ForwardGeocoding, Geocoding, ReverseGeocoding, MapboxGL } from '@wutiange/mapboxgl-api'

You need to set the access token first before continuing with the operations:

import { MapboxGL } from '@wutiange/mapboxgl-api'
MapboxGL.setAccessToken("your mapboxgl access token")

You can now parse locations, including from coordinates to places and from places to coordinates.

import { Geocoding } from '@wutiange/mapboxgl-api'

// From coordinates to location information
Geocoding.reverse({ longitude: 116.42, latitude: 39.92 }).then((res) => {
  console.log(res)
})

// From location information to coordinates
Geocoding.forward({ searchText: "Beijing, Chaoyang District, Chaoyang Park" }).then((res) => {
  console.log(res)
})

3. More Help

3.1 See Examples, Run Examples

If you want to run the examples yourself and see the results:

  1. Rename .env.example under the example folder to .env;
  2. Save your access token in the .env file;
  3. Execute yarn install or yarn;
  4. Run yarn dev and you can see the examples running.

You can then open your browser and access the following URLs:

http://127.0.0.1:3000/reverse?longitude=116.42&latitude=39.92

http://127.0.0.1:3000/forward?searchText=Beijing

You will be able to see the results. If you don't want to run it yourself but still want to see the returned data, please refer to the second point.

3.2 See Return Data Examples

  1. forward;
  2. reverse.

mapboxgl-api's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.