Leaflet graticule with automatic adaption to zoom level. Now with more options.
npm install leaflet-auto-graticule-optionsLeaflet.AutoGraticule
=====================
A graticule for maps showing Latitude and Longitude, with automatic adjustment to the zoom level.
Based on Leaflet.SimpleGraticule.
Demo\
Demo on FacilMap
Usage
-----
Since release 2.0.0, Leaflet.AutoGraticule is published as an ES module only. Install it using npm install -S leaflet-auto-graticule-options and use it in your code like so:
``javascript
`
import AutoGraticule from "leaflet-auto-graticule-options";
new AutoGraticule().addTo(map);
`
TypeScript is supported.
If you want to use Leaflet.AutoGraticule directly inside a website without using a module bundler (not recommended for production), you need to make sure to import it and Leaflet as a module, for example from esm.sh:
html
`
`
Options
javascript
``
const options = {
/* Leaflet map event on which to redraw the graticule. /
redraw: 'moveend',
/* Minimum distance in pixels between two graticule lines. /
minDistance: 100
};
new L.AutoGraticule(options).addTo(map);