Skip to content

skyksl066/Leaflet.SimpleGraticule

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Leaflet.SimpleGraticule

A graticule for maps in Leaflet's L.CRS.Simple coordinate system. Code inspiration came from Jan Pieter Waagmeester's fantastic Leaflet.Grid for world projections. It is very similar in nature but assumes an infinite flat plane.

Usage

Adding L.SimpleGraticule:

var options = {interval: 20,
               showOriginLabel: true,
               redraw: 'move',
               zoomIntervals: [
                {start: 0, end: 3, interval: 50},
                {start: 4, end: 5, interval: 5},
                {start: 6, end: 20, interval: 1}
            ]};

L.simpleGraticule(options).addTo(map);

####Options:####

  • interval: The spacing in map units between horizontal and vertical lines.
  • showOriginLabel: true Whether or not to show '(0,0)' at the origin.
  • redraw: on which map event to redraw the graticule. On move is default but moveend can be smoother.
  • zoomIntervals: use different intervals in different zoom levels. If not specified, all zoom levels use value in interval option.

Notes

  • This is my first open source contribution. I appreciate feedback on any topics!

About

A rotatable graticule for Leaflet maps in the L.CRS.Simple coordinate system with angle support

Topics

Resources

License

Stars

Watchers

Forks

Languages

  • JavaScript 77.3%
  • HTML 17.8%
  • CSS 4.9%