Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 748 Bytes

README.md

File metadata and controls

21 lines (12 loc) · 748 Bytes

L.Control.BoxZoom

A Leaflet control to do a box zoom. Not everyone knows about holding down Shift, and prefer to have a visible, clickable button to do box zooms.

Installation and Example

For the impatient, copy-and-paste out of the working example, index.html

The dist/ folder contains the essentials: a JS file, a CSS file, and a single SVG icon.

Simply include the JS and CSS as usual:

<script src="dist/leaflet-control-boxzoom.js"></script>
<link rel="stylesheet" href="dist/leaflet-control-boxzoom.css" />

Then add the Control to your map:

L.Control.boxzoom({ position:'topleft' }).addTo(map);

Options

  • position Any of the usual position flags for a L.Control subclass: topright, topleft, and so on.