geo-map

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

Usage no npm install needed!

<script type="module">
  import geoMap from 'https://cdn.skypack.dev/geo-map';
</script>

README

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