Mapcreator interactive maps library
npm install @mapcreator/mapcreator-glMapcreator interactive maps library. Uses Maplibre GL JS internally and adds Mapcreator-specific features to it.
```
npm i --save @mapcreator/mapcreator-gl
`javascript
// Import library scripts
import { init } from '@mapcreator/mapcreator-gl';
// Import library styles
import '@mapcreator/mapcreator-gl/dist/lib/style.css';
// Initialize the map
const map = await init({
container: '
// map is now an instance of MapLibre GL JS:
//
// map.setZoom(10);
// map.getZoom();
``