Socket
Socket
Sign inDemoInstall

@nbai/nbmap-gl

Package Overview
Dependencies
104
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @nbai/nbmap-gl

NBMap GL is a web map SDK for JavaScript that enables interactive maps with NextBillion's vector tiles and API services in your web apps.


Version published
Weekly downloads
207
increased by8.38%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

NBMap GL

NBMap GL is a web map SDK for JavaScript that enables interactive maps with NextBillion's vector tiles service in your web apps, basing on Maplibre.

Development

Before start, please install Node.js and yarn to install dependencies.

yarn

You can start developing with this command:

yarn dev

You can build a minified version of the SDK with this command:

yarn build

Usage

Plain HTML

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>NBMap GL Basic Example</title>
    <style>
      * {
        margin: 0;
        padding: 0;
      }

      #map {
        width: 100vw;
        height: 100vh;
      }
    </style>
    <link rel="stylesheet" type="text/css" href="https://maps-gl.nextbillion.io/maps/v2/api/css"></link>
    <script src="https://maps-gl.nextbillion.io/maps/v2/api/js"></script>
  </head>
  <body>
    <div id="map"></div>
    <script>
      nextbillion.setApiKey('Your API key')
      var nbmap = new nextbillion.maps.Map({
        container: document.getElementById('map'),
        style: 'https://api.nextbillion.io/maps/streets/style.json',
        zoom: 11,
        center: { lat: 34.08572, lng: -118.324569 },
      })

      nbmap.on('load', function () {
        const marker = new nextbillion.maps.Marker().setLngLat({ lat: 34.08572, lng: -118.324569 }).addTo(nbmap.map)
      })
    </script>
  </body>
</html>

Typescript

import '@nbai/nbmap-gl/dist/nextbillion.css';
import nextbillion, { Map, Marker } from '@nbai/nbmap-gl';

nextbillion.setApiKey('Your API key');
const nbmap = new Map({
  container: 'map',
  style: 'https://api.nextbillion.io/maps/streets/style.json',
  zoom: 11,
  center: { lat: 34.08572, lng: -118.324569 },
});
nbmap.on('load', () => {
  const marker: Marker = new Marker()
    .setLngLat({ lat: 34.08572, lng: -118.324569 })
    .addTo(nbmap.map);
})

FAQs

Last updated on 25 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc