app/pb_kits/playbook/pb_map/docs/_map_default
This kit provides a wrapping class to place around the MapLibre library. Complete docs for using the library can be found here.
Basic setup to start using MapLibre:
- Install the npm package using
yarn add maplibre-gl
- To include the maplibre css, include a link to the CSS file as a CDN in your stylesheet using the following syntax:
@import url("https://unpkg.com/maplibre-gl@2.4.0/dist/maplibre-gl.css");
OR include it as a link in the tag “ - You can now use MapLibre within the Map Kit as shown in this example.
Notes :
- To enable custom buttons, set
zoomBtns
andflyTo
to true and pass inzoomInClick
,zoomOutClick
andflyToClick
as shown in this doc example. - Use
mapTheme.marker
to set the Marker color. - To use Maplibre, you must also set a height and width to the containing div (.pb_map) and set position to ‘relative’.
scrollZoom
has been disabled in these doc examples for page usability