A facade that abstracts over the Google and HERE map JavaScript SDKs


License
AFL-2.0
Install
npm install geo-map@1.9.1

Documentation

geo-map

A facade that abstracts over the Google and HERE map JavaScript SDKs

Install

npm install geo-map

Usage

import { GeoMap } from "geo-map";

async function main() {
  const element = document.getElementById('map');

  const map = GeoMap.create({
    config: {
      provder: Types.GeoMapProvider.Google,
      auth: {
        apiKey: '',
      }
    }
  });

  await map.mount(element, { center: { lat: 0, lng: 0 } })
}

main().catch(err => {
  throw err;
})

License

Apache License 2.0