├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── index.js ├── leaflet-knn.js ├── leaflet-knn.min.js ├── package.json └── test ├── index.html ├── leaflet-knn.js └── support ├── .tern-port ├── leaflet.js ├── points.js └── squares.js /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.1.0 2 | 3 | * Multi-point support 4 | * nearestLayer 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/leaflet-knn/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/leaflet-knn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/leaflet-knn/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/leaflet-knn/HEAD/index.js -------------------------------------------------------------------------------- /leaflet-knn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/leaflet-knn/HEAD/leaflet-knn.js -------------------------------------------------------------------------------- /leaflet-knn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/leaflet-knn/HEAD/leaflet-knn.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/leaflet-knn/HEAD/package.json -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/leaflet-knn/HEAD/test/index.html -------------------------------------------------------------------------------- /test/leaflet-knn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/leaflet-knn/HEAD/test/leaflet-knn.js -------------------------------------------------------------------------------- /test/support/.tern-port: -------------------------------------------------------------------------------- 1 | 60274 -------------------------------------------------------------------------------- /test/support/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/leaflet-knn/HEAD/test/support/leaflet.js -------------------------------------------------------------------------------- /test/support/points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/leaflet-knn/HEAD/test/support/points.js -------------------------------------------------------------------------------- /test/support/squares.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/leaflet-knn/HEAD/test/support/squares.js --------------------------------------------------------------------------------