├── .gitignore ├── .npm └── package │ ├── .gitignore │ ├── README │ └── npm-shrinkwrap.json ├── CHANGELOG.md ├── README.md ├── images ├── layers-2x.png ├── layers.png ├── marker-icon-2x.png ├── marker-icon.png └── marker-shadow.png ├── package.js └── styles └── leaflet.css /.gitignore: -------------------------------------------------------------------------------- 1 | .versions 2 | .npm-debug.log 3 | -------------------------------------------------------------------------------- /.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npm/package/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truemagic-coder/meteor-leaflet/HEAD/.npm/package/README -------------------------------------------------------------------------------- /.npm/package/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truemagic-coder/meteor-leaflet/HEAD/.npm/package/npm-shrinkwrap.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truemagic-coder/meteor-leaflet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truemagic-coder/meteor-leaflet/HEAD/README.md -------------------------------------------------------------------------------- /images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truemagic-coder/meteor-leaflet/HEAD/images/layers-2x.png -------------------------------------------------------------------------------- /images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truemagic-coder/meteor-leaflet/HEAD/images/layers.png -------------------------------------------------------------------------------- /images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truemagic-coder/meteor-leaflet/HEAD/images/marker-icon-2x.png -------------------------------------------------------------------------------- /images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truemagic-coder/meteor-leaflet/HEAD/images/marker-icon.png -------------------------------------------------------------------------------- /images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truemagic-coder/meteor-leaflet/HEAD/images/marker-shadow.png -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truemagic-coder/meteor-leaflet/HEAD/package.js -------------------------------------------------------------------------------- /styles/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truemagic-coder/meteor-leaflet/HEAD/styles/leaflet.css --------------------------------------------------------------------------------