Skip to content

Deflates lines and polygons to a marker when their screen size becomes too small in lower zoom levels.

License

Notifications You must be signed in to change notification settings

Lemaf/Leaflet.Deflate

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Leaflet.Deflate

https://api.travis-ci.org/oliverroick/Leaflet.Deflate.svg?branch=master

Substitutes polygons and lines with markers when their screen size falls below a defined threshold.

https://cloud.githubusercontent.com/assets/159510/7164588/090c06fe-e399-11e4-956d-0283ef7e69cf.gif

Usage

Include L.Deflate.js from UNPKG:

<script src="https://unpkg.com/Leaflet.Deflate@0.3.0/dist/L.Deflate.js"></script>

Initialize with the minSize option and add to map. minSize defines the minimum width and height in pixels for a path to be displayed in its actual shape. It defaults to 20.

var map = L.map("map");
L.Deflate({minSize: 10}).addTo(map);

// add layers
L.circle([51.508, -0.11], 500).addTo(map);

// works with GeoJSONLayer too
L.geoJson(json).addTo(map);

FeatureGroup

You can apply deflating to one FeatureGroup—only features inside that feature group will be affected by Leaflet.Deflate.

var map = L.map("map");

var featureGroup = L.featureGroup().addTo(map)
L.Deflate({minSize: 10, featureGroup: featureGroup}).addTo(map);

// The polygon will be deflated
var polygon = L.polygon([
    [51.509, -0.08],
    [51.503, -0.06],
    [51.51, -0.047]
]);
featureGroup.addLayer(polygon);

// The circle will NOT be deflated
L.circle([51.508, -0.11], 500).addTo(map);

Cluster Markers

With a little help from Leaflet.Markercluster and Leaflet.Markercluster.LayerSupport you can cluster markers on your map.

var map = L.map("map");

var featureGroup = L.featureGroup();
featureGroup.addTo(map);
L.Deflate({minSize: 10, featureGroup: featureGroup}).addTo(map);

var polygon = L.polygon([
    [51.509, -0.08],
    [51.503, -0.06],
    [51.51, -0.047]
]);
featureGroup.addLayer(polygon);

L.circle([51.508, -0.11], 500).addTo(map);
featureGroup.addLayer(circle);

var markerGroup = L.markerClusterGroup.layerSupport()
markerGroup.addTo(map);
markerGroup.checkIn(featureGroup);

// Dirty hack; otherwise the cluster won't appear on the map.
map.zoomIn(0);
map.zoomOut(0);

Developing

You'll need to install the dev dependencies to test and write the distribution file.

npm install

To run tests:

gulp test

To write a minified JS into dist:

gulp dist

Authors

License

Apache 2.0

Greenkeeper badge

About

Deflates lines and polygons to a marker when their screen size becomes too small in lower zoom levels.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 53.0%
  • HTML 47.0%