├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── bubble-wrap-style.yaml ├── fonts ├── Apache License.txt ├── Montserrat-Bold.woff ├── Montserrat-Medium.woff ├── Montserrat-Regular.woff ├── OpenSans-Bold.woff ├── OpenSans-Italic.woff ├── OpenSans-Light.woff ├── OpenSans-Regular.woff ├── OpenSans-Semibold.woff ├── OpenSans-SemiboldItalic.woff ├── Quicksand-Regular.woff └── Varela-Regular.woff ├── images └── building-grid.gif ├── index.html ├── lib ├── FileSaver.js ├── dat.gui.min.js ├── keymaster.js └── leaflet-hash.js └── themes ├── bubble-wrap-icons.yaml ├── bubble-wrap-road-shields-international.yaml ├── bubble-wrap-road-shields-usa.yaml ├── images ├── bubble-wrap-shields-international@2x.png ├── bubble-wrap-shields-usa@2x.png └── bubble-wrap@2x.png ├── label-0.yaml ├── label-1.yaml ├── label-10.yaml ├── label-11.yaml ├── label-2.yaml ├── label-3.yaml ├── label-4.yaml ├── label-5.yaml ├── label-6.yaml ├── label-7.yaml ├── label-8.yaml └── label-9.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .swp 3 | dist/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 10.0.0 2 | -------------------------------------------------------------------------------- /bubble-wrap-style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/bubble-wrap-style.yaml -------------------------------------------------------------------------------- /fonts/Apache License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/fonts/Apache License.txt -------------------------------------------------------------------------------- /fonts/Montserrat-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/fonts/Montserrat-Bold.woff -------------------------------------------------------------------------------- /fonts/Montserrat-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/fonts/Montserrat-Medium.woff -------------------------------------------------------------------------------- /fonts/Montserrat-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/fonts/Montserrat-Regular.woff -------------------------------------------------------------------------------- /fonts/OpenSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/fonts/OpenSans-Bold.woff -------------------------------------------------------------------------------- /fonts/OpenSans-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/fonts/OpenSans-Italic.woff -------------------------------------------------------------------------------- /fonts/OpenSans-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/fonts/OpenSans-Light.woff -------------------------------------------------------------------------------- /fonts/OpenSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/fonts/OpenSans-Regular.woff -------------------------------------------------------------------------------- /fonts/OpenSans-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/fonts/OpenSans-Semibold.woff -------------------------------------------------------------------------------- /fonts/OpenSans-SemiboldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/fonts/OpenSans-SemiboldItalic.woff -------------------------------------------------------------------------------- /fonts/Quicksand-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/fonts/Quicksand-Regular.woff -------------------------------------------------------------------------------- /fonts/Varela-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/fonts/Varela-Regular.woff -------------------------------------------------------------------------------- /images/building-grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/images/building-grid.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/index.html -------------------------------------------------------------------------------- /lib/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/lib/FileSaver.js -------------------------------------------------------------------------------- /lib/dat.gui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/lib/dat.gui.min.js -------------------------------------------------------------------------------- /lib/keymaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/lib/keymaster.js -------------------------------------------------------------------------------- /lib/leaflet-hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/lib/leaflet-hash.js -------------------------------------------------------------------------------- /themes/bubble-wrap-icons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/bubble-wrap-icons.yaml -------------------------------------------------------------------------------- /themes/bubble-wrap-road-shields-international.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/bubble-wrap-road-shields-international.yaml -------------------------------------------------------------------------------- /themes/bubble-wrap-road-shields-usa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/bubble-wrap-road-shields-usa.yaml -------------------------------------------------------------------------------- /themes/images/bubble-wrap-shields-international@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/images/bubble-wrap-shields-international@2x.png -------------------------------------------------------------------------------- /themes/images/bubble-wrap-shields-usa@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/images/bubble-wrap-shields-usa@2x.png -------------------------------------------------------------------------------- /themes/images/bubble-wrap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/images/bubble-wrap@2x.png -------------------------------------------------------------------------------- /themes/label-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/label-0.yaml -------------------------------------------------------------------------------- /themes/label-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/label-1.yaml -------------------------------------------------------------------------------- /themes/label-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/label-10.yaml -------------------------------------------------------------------------------- /themes/label-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/label-11.yaml -------------------------------------------------------------------------------- /themes/label-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/label-2.yaml -------------------------------------------------------------------------------- /themes/label-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/label-3.yaml -------------------------------------------------------------------------------- /themes/label-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/label-4.yaml -------------------------------------------------------------------------------- /themes/label-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/label-5.yaml -------------------------------------------------------------------------------- /themes/label-6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/label-6.yaml -------------------------------------------------------------------------------- /themes/label-7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/label-7.yaml -------------------------------------------------------------------------------- /themes/label-8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/label-8.yaml -------------------------------------------------------------------------------- /themes/label-9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/bubble-wrap/HEAD/themes/label-9.yaml --------------------------------------------------------------------------------