Skip to content

Instantly share code, notes, and snippets.

@obstschale
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save obstschale/8f14e1b6bebbc8a7e627 to your computer and use it in GitHub Desktop.
Save obstschale/8f14e1b6bebbc8a7e627 to your computer and use it in GitHub Desktop.
tree leaflet.markercluster
.
├── .bower.json
├── .gitignore
├── .travis.yml
├── CHANGELOG.md
├── Jakefile.js
├── MIT-LICENCE.txt
├── README.md
├── build
│   ├── build.js
│   ├── deps.js
│   └── hintrc.js
├── dist
│   ├── MarkerCluster.Default.css
│   ├── MarkerCluster.css
│   ├── leaflet.markercluster-src.js
│   └── leaflet.markercluster.js
├── example
│   ├── geojson-sample.js
│   ├── geojson.html
│   ├── marker-clustering-convexhull.html
│   ├── marker-clustering-custom.html
│   ├── marker-clustering-everything.html
│   ├── marker-clustering-geojson.html
│   ├── marker-clustering-realworld-maxzoom.388.html
│   ├── marker-clustering-realworld-mobile.388.html
│   ├── marker-clustering-realworld.10000.html
│   ├── marker-clustering-realworld.388.html
│   ├── marker-clustering-realworld.50000.html
│   ├── marker-clustering-singlemarkermode.html
│   ├── marker-clustering-spiderfier.html
│   ├── marker-clustering-zoomtobounds.html
│   ├── marker-clustering-zoomtoshowlayer.html
│   ├── marker-clustering.html
│   ├── mobile.css
│   ├── old-bugs
│   │   ├── add-1000-after.html
│   │   ├── add-markers-offscreen.html
│   │   ├── add-remove-before-addtomap.html
│   │   ├── animationless-zoom.html
│   │   ├── disappearing-marker-from-spider.html
│   │   ├── doesnt-update-cluster-on-bottom-level.html
│   │   ├── remove-add-clustering.html
│   │   ├── remove-when-spiderfied.html
│   │   ├── removelayer-after-remove-from-map.html
│   │   ├── setView-doesnt-remove.html
│   │   └── zoomtoshowlayer-doesnt-need-to-zoom.html
│   ├── realworld.10000.js
│   ├── realworld.388.js
│   ├── realworld.50000.1.js
│   ├── realworld.50000.2.js
│   └── screen.css
├── package.json
├── spec
│   ├── after.js
│   ├── expect.js
│   ├── happen.js
│   ├── index.html
│   ├── karma.conf.js
│   ├── sinon.js
│   └── suites
│   ├── AddLayer.MultipleSpec.js
│   ├── AddLayer.SingleSpec.js
│   ├── AddLayersSpec.js
│   ├── ChildChangingIconSupportSpec.js
│   ├── CircleMarkerSupportSpec.js
│   ├── CircleSupportSpec.js
│   ├── DistanceGridSpec.js
│   ├── LeafletSpec.js
│   ├── NonPointSpec.js
│   ├── QuickHullSpec.js
│   ├── RemoveLayerSpec.js
│   ├── SpecHelper.js
│   ├── clearLayersSpec.js
│   ├── eachLayerSpec.js
│   ├── eventsSpec.js
│   ├── getBoundsSpec.js
│   ├── getLayersSpec.js
│   ├── getVisibleParentSpec.js
│   ├── onAddSpec.js
│   ├── onRemoveSpec.js
│   ├── spiderfySpec.js
│   └── zoomAnimationSpec.js
└── src
├── DistanceGrid.js
├── MarkerCluster.QuickHull.js
├── MarkerCluster.Spiderfier.js
├── MarkerCluster.js
├── MarkerClusterGroup.js
└── copyright.js
7 directories, 82 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment