├── .DS_Store ├── Chapter01 ├── .DS_Store ├── Chapter_01_Solutions.zip ├── Chapter_01_Solutions │ ├── .DS_Store │ ├── css │ │ └── style.css │ ├── index.html │ └── js │ │ └── main.js ├── img │ ├── .DS_Store │ ├── figure1.1.1.png │ ├── figure1.2.1.png │ ├── figure1.2.2.png │ ├── figure1.2.3.png │ ├── figure1.3.1.png │ ├── figure1.3.2.png │ ├── figure1.3.3.png │ ├── figure1.3.4.png │ ├── figure1.3.5.png │ └── pre-background.png ├── readme.md └── unit-1.zip ├── Chapter02 ├── .DS_Store ├── Chapter_02_Solutions.zip ├── Chapter_02_Solutions │ ├── .DS_Store │ ├── css │ │ └── style.css │ ├── index.html │ └── js │ │ └── main_with_debug.js ├── img │ ├── dontpanic.png │ ├── figure2.0.1.png │ ├── figure2.0.2.png │ ├── figure2.1.1.png │ ├── figure2.1.2.png │ ├── figure2.2.1.png │ ├── figure2.2.2.png │ ├── figure2.3.1.png │ ├── figure2.4.1.png │ ├── figure2.4.2.png │ ├── figure2.4.3.png │ ├── figure2.4.3_deprecated.png │ ├── figure2.4.4.png │ ├── figure2.4.5.png │ ├── figure2.4.6.png │ ├── figure2.4.7.png │ └── figure2.5.1.png ├── main_with_debug.js └── readme.md ├── Chapter03 ├── Chapter_03_Solutions.zip ├── Chapter_03_Solutions │ ├── css │ │ └── style.css │ ├── data │ │ ├── MegaCities.csv │ │ └── MegaCities.geojson │ ├── index.html │ └── js │ │ └── main.js ├── data │ └── MegaCities.csv ├── debug_ajax.js ├── img │ ├── figure3.1.1.png │ ├── figure3.1.2.png │ ├── figure3.1.3.png │ ├── figure3.1.4.png │ ├── figure3.1.5.png │ ├── figure3.1.6.png │ ├── figure3.2.1.png │ ├── figure3.2.2.png │ ├── figure3.3.1.png │ ├── figure3.3.2.png │ ├── figure3.3.3.png │ ├── figure3.3.4.png │ └── final.png └── readme.md ├── Chapter04 ├── .DS_Store ├── Chapter_04_Solutions.zip ├── Chapter_04_Solutions │ ├── _DS_Store │ ├── css │ │ └── style.css │ ├── data │ │ ├── MegaCities.csv │ │ ├── MegaCities.geojson │ │ └── _DS_Store │ ├── img │ │ └── readme.md │ ├── index.html │ ├── js │ │ ├── adaptedTutorial.js │ │ ├── example2.3.js │ │ ├── example2.4.js │ │ ├── example2.5.js │ │ ├── example2.6.js │ │ ├── geojsonTutorial.js │ │ └── quickstartTutorial.js │ └── lib │ │ ├── _DS_Store │ │ ├── leaflet │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet-src.esm.js │ │ ├── leaflet-src.esm.js.map │ │ ├── leaflet-src.js │ │ ├── leaflet-src.js.map │ │ ├── leaflet.css │ │ ├── leaflet.js │ │ └── leaflet.js.map │ │ └── readme.md ├── boilerplate.zip ├── img │ ├── figure4.1.1.png │ ├── figure4.1.2.PNG │ ├── figure4.1.3.PNG │ ├── figure4.1.4.PNG │ ├── figure4.1.5.png │ ├── figure4.1.6.png │ ├── figure4.1.7.png │ ├── figure4.1.8.png │ ├── figure4.2.1.PNG │ ├── figure4.2.2.PNG │ ├── figure4.2.3.png │ ├── figure4.2.4.PNG │ ├── figure4.2.5.png │ ├── figure4.2.6.PNG │ ├── figure4.2.7.png │ ├── figure4.2.8.png │ ├── figure4.2.9.png │ └── figure4.4.1.png └── readme.md ├── Chapter05 ├── Chapter_05_Solutions.zip ├── Chapter_05_Solutions │ ├── css │ │ └── style.css │ ├── data │ │ ├── MegaCities.csv │ │ └── MegaCities.geojson │ ├── img │ │ ├── forward.png │ │ ├── readme.md │ │ └── reverse.png │ ├── index.html │ ├── js │ │ ├── example1.1.js │ │ ├── example1.2.js │ │ ├── example1.4.js │ │ ├── example1.5.js │ │ ├── example2.1.js │ │ ├── example3.1.js │ │ ├── example3.10.js │ │ ├── example3.13.js │ │ ├── example3.19.js │ │ ├── example3.3.js │ │ └── example3.5.js │ ├── lib │ │ ├── leaflet │ │ │ ├── images │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet-src.esm.js │ │ │ ├── leaflet-src.esm.js.map │ │ │ ├── leaflet-src.js │ │ │ ├── leaflet-src.js.map │ │ │ ├── leaflet.css │ │ │ ├── leaflet.js │ │ │ └── leaflet.js.map │ │ └── readme.md │ └── prepros.cfg ├── img │ ├── figure5.1.1.png │ ├── figure5.1.2.png │ ├── figure5.2.1.png │ ├── figure5.2.2.png │ ├── figure5.2.3.png │ ├── figure5.3.1.png │ ├── figure5.3.2.png │ ├── figure5.3.3.png │ ├── figure5.3.4.png │ ├── figure5.3.5.png │ ├── figure5.3.6.png │ ├── figure5.4.1.png │ ├── figure5.4.2.png │ ├── figure5.4.3.png │ ├── figure5.4.4.png │ ├── figure5.4.5.png │ ├── figure5.4.6.png │ └── figure5.4.7.png └── readme.md ├── Chapter06 ├── .DS_Store ├── Chapter_06_Solutions.zip ├── Chapter_06_Solutions │ ├── .DS_Store │ ├── css │ │ └── style.css │ ├── data │ │ ├── MegaCities.csv │ │ └── MegaCities.geojson │ ├── img │ │ ├── forward.png │ │ ├── readme.md │ │ └── reverse.png │ ├── index.html │ ├── js │ │ ├── example1.3.js │ │ ├── example1.4.js │ │ ├── example1.5.js │ │ ├── example1.6.js │ │ ├── example2.3.js │ │ ├── example2.4.js │ │ ├── example2.5.js │ │ ├── example2.7.js │ │ ├── example3.4.js │ │ ├── example3.5.js │ │ ├── example3.6.js │ │ └── example3.7.js │ ├── lib │ │ ├── leaflet │ │ │ ├── images │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet-src.esm.js │ │ │ ├── leaflet-src.esm.js.map │ │ │ ├── leaflet-src.js │ │ │ ├── leaflet-src.js.map │ │ │ ├── leaflet.css │ │ │ ├── leaflet.js │ │ │ └── leaflet.js.map │ │ └── readme.md │ ├── prepros.cfg │ └── test.svg ├── img │ ├── figure6.1.1.png │ ├── figure6.1.2.png │ ├── figure6.2.1.png │ ├── figure6.2.2.png │ ├── figure6.2.3.png │ ├── figure6.2.4.png │ ├── figure6.3.1.png │ ├── figure6.3.2.png │ ├── figure6.3.3.png │ ├── figure6.3.4.png │ ├── figure6.3.5.png │ ├── figure6.3.6.png │ └── figure6.3.7.png └── readme.md ├── Chapter07 ├── .DS_Store ├── img │ ├── .DS_Store │ ├── figure7.1.1.png │ ├── figure7.1.2.png │ ├── figure7.2.1.png │ ├── figure7.2.10.png │ ├── figure7.2.11.png │ ├── figure7.2.2.png │ ├── figure7.2.3.png │ ├── figure7.2.4.png │ ├── figure7.2.5.png │ ├── figure7.2.6.png │ ├── figure7.2.7.png │ ├── figure7.2.8.png │ ├── figure7.2.9.png │ ├── figure7.3.1.png │ ├── figure7.3.2.png │ ├── figure7.3.3.png │ ├── figure7.3.4.png │ └── figure7.3.5.png └── readme.md ├── Chapter08 ├── .DS_Store ├── Chapter_08_Solutions.zip ├── Chapter_08_Solutions │ ├── .DS_Store │ ├── css │ │ └── style.css │ ├── data │ │ └── readme.md │ ├── img │ │ └── readme.md │ ├── index.html │ ├── js │ │ ├── example1.1.js │ │ ├── example1.2.js │ │ ├── example1.3.js │ │ ├── example1.4.js │ │ ├── example1.5.js │ │ ├── example1.6.js │ │ ├── example1.7.js │ │ ├── example1.8.js │ │ ├── example1.9.js │ │ ├── example2.5.js │ │ ├── example2.6.js │ │ ├── example2.8.js │ │ ├── example3.1.js │ │ ├── example3.11.js │ │ ├── example3.12.js │ │ ├── example3.14.js │ │ ├── example3.15.js │ │ ├── example3.16.js │ │ ├── example3.17.js │ │ ├── example3.4.js │ │ ├── example3.5.js │ │ ├── example3.8.js │ │ └── example3.9.js │ └── lib │ │ ├── d3.min.js │ │ └── readme.md ├── img │ ├── figure8.1.1.png │ ├── figure8.1.2.png │ ├── figure8.1.3.png │ ├── figure8.1.4.png │ ├── figure8.1.5.png │ ├── figure8.2.1.png │ ├── figure8.2.2.png │ ├── figure8.2.3.png │ ├── figure8.3.1.png │ ├── figure8.3.10.png │ ├── figure8.3.11.png │ ├── figure8.3.12.png │ ├── figure8.3.13.png │ ├── figure8.3.2.png │ ├── figure8.3.3.png │ ├── figure8.3.4.png │ ├── figure8.3.5.png │ ├── figure8.3.6.png │ ├── figure8.3.7.png │ ├── figure8.3.8.png │ └── figure8.3.9.png └── readme.md ├── Chapter09 ├── .DS_Store ├── Chapter_09_Solutions.zip ├── Chapter_09_Solutions │ ├── .DS_Store │ ├── css │ │ └── style.css │ ├── data │ │ ├── EuropeCountries.geojson │ │ ├── EuropeCountries.topojson │ │ ├── FranceRegions.geojson │ │ ├── FranceRegions.topojson │ │ └── unitsData.csv │ ├── img │ │ └── readme.md │ ├── index.html │ ├── js │ │ ├── example1.4.js │ │ ├── example1.5.js │ │ ├── example2.2.js │ │ ├── example2.3.js │ │ ├── example2.6.js │ │ └── example2.8.js │ └── lib │ │ ├── d3.min.js │ │ ├── readme.md │ │ └── topojson.min.js ├── data │ ├── EuropeCountries.geojson │ ├── FranceRegions.geojson │ └── unitsData.csv ├── img │ ├── figure9.1.1.png │ ├── figure9.1.2.png │ ├── figure9.1.3.png │ ├── figure9.1.4.png │ ├── figure9.2.1.gif │ ├── figure9.2.2.png │ ├── figure9.2.3.png │ ├── figure9.2.4.png │ ├── figure9.2.5.png │ └── figure9.2.6.png └── readme.md ├── Chapter10 ├── .DS_Store ├── Chapter_10_Solutions.zip ├── Chapter_10_Solutions │ ├── .DS_Store │ ├── css │ │ └── style.css │ ├── data │ │ ├── EuropeCountries.geojson │ │ ├── EuropeCountries.topojson │ │ ├── FranceRegions.geojson │ │ ├── FranceRegions.topojson │ │ ├── unitsData.csv │ │ └── unitsData_incomplete.csv │ ├── img │ │ └── readme.md │ ├── index.html │ ├── js │ │ ├── example1.1.js │ │ ├── example1.2.js │ │ ├── example1.3.js │ │ ├── example1.4.js │ │ ├── example1.5.js │ │ ├── example1.6.js │ │ ├── example1.8.js │ │ ├── example2.1.js │ │ ├── example2.10.js │ │ ├── example2.12.js │ │ ├── example2.2.js │ │ ├── example2.4.js │ │ ├── example2.5.js │ │ ├── example2.7.js │ │ └── example2.8.js │ └── lib │ │ ├── d3.min.js │ │ ├── readme.md │ │ └── topojson.min.js ├── img │ ├── figure10.1.1.png │ ├── figure10.1.2.png │ ├── figure10.1.3.png │ ├── figure10.1.4.png │ ├── figure10.1.5.png │ ├── figure10.2.1.png │ ├── figure10.2.2.png │ ├── figure10.2.3.png │ ├── figure10.2.4.png │ ├── figure10.2.5.png │ ├── figure10.2.6.png │ ├── figure10.2.7.png │ ├── figure10.2.8.png │ └── figure10.2.9.png └── readme.md ├── Chapter11 ├── .DS_Store ├── Chapter_11_Solutions.zip ├── Chapter_11_Solutions │ ├── .DS_Store │ ├── css │ │ └── style.css │ ├── data │ │ ├── EuropeCountries.geojson │ │ ├── EuropeCountries.topojson │ │ ├── FranceRegions.geojson │ │ ├── FranceRegions.topojson │ │ ├── unitsData.csv │ │ └── unitsData_incomplete.csv │ ├── img │ │ └── readme.md │ ├── index.html │ ├── js │ │ ├── example1.1.js │ │ ├── example1.4.js │ │ ├── example1.6.js │ │ ├── example1.7.js │ │ ├── example1.9.js │ │ ├── example2.10.js │ │ ├── example2.2.js │ │ ├── example2.4.js │ │ ├── example2.5.js │ │ ├── example2.6.js │ │ └── example2.8.js │ └── lib │ │ ├── d3.min.js │ │ ├── readme.md │ │ └── topojson.min.js ├── img │ ├── figure11.1.1.png │ ├── figure11.1.2.png │ ├── figure11.1.3.png │ ├── figure11.1.4.gif │ ├── figure11.2.1.png │ ├── figure11.2.2.png │ ├── figure11.2.3.png │ ├── figure11.2.4.png │ └── figure11.2.5.gif └── readme.md ├── Introduction ├── img │ ├── nsf-logo.png │ ├── uw-logo.png │ └── uwcl-logo.png └── readme.md └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/.DS_Store -------------------------------------------------------------------------------- /Chapter01/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/.DS_Store -------------------------------------------------------------------------------- /Chapter01/Chapter_01_Solutions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/Chapter_01_Solutions.zip -------------------------------------------------------------------------------- /Chapter01/Chapter_01_Solutions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/Chapter_01_Solutions/.DS_Store -------------------------------------------------------------------------------- /Chapter01/Chapter_01_Solutions/css/style.css: -------------------------------------------------------------------------------- 1 | /* Stylesheet by Bucky Badger, 2022 */ -------------------------------------------------------------------------------- /Chapter01/Chapter_01_Solutions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/Chapter_01_Solutions/index.html -------------------------------------------------------------------------------- /Chapter01/Chapter_01_Solutions/js/main.js: -------------------------------------------------------------------------------- 1 | // Script by Nick Underwood, Spring 2020 -------------------------------------------------------------------------------- /Chapter01/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/img/.DS_Store -------------------------------------------------------------------------------- /Chapter01/img/figure1.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/img/figure1.1.1.png -------------------------------------------------------------------------------- /Chapter01/img/figure1.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/img/figure1.2.1.png -------------------------------------------------------------------------------- /Chapter01/img/figure1.2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/img/figure1.2.2.png -------------------------------------------------------------------------------- /Chapter01/img/figure1.2.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/img/figure1.2.3.png -------------------------------------------------------------------------------- /Chapter01/img/figure1.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/img/figure1.3.1.png -------------------------------------------------------------------------------- /Chapter01/img/figure1.3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/img/figure1.3.2.png -------------------------------------------------------------------------------- /Chapter01/img/figure1.3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/img/figure1.3.3.png -------------------------------------------------------------------------------- /Chapter01/img/figure1.3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/img/figure1.3.4.png -------------------------------------------------------------------------------- /Chapter01/img/figure1.3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/img/figure1.3.5.png -------------------------------------------------------------------------------- /Chapter01/img/pre-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/img/pre-background.png -------------------------------------------------------------------------------- /Chapter01/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/readme.md -------------------------------------------------------------------------------- /Chapter01/unit-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter01/unit-1.zip -------------------------------------------------------------------------------- /Chapter02/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/.DS_Store -------------------------------------------------------------------------------- /Chapter02/Chapter_02_Solutions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/Chapter_02_Solutions.zip -------------------------------------------------------------------------------- /Chapter02/Chapter_02_Solutions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/Chapter_02_Solutions/.DS_Store -------------------------------------------------------------------------------- /Chapter02/Chapter_02_Solutions/css/style.css: -------------------------------------------------------------------------------- 1 | /* Stylesheet by Bucky Badger, 2022 */ -------------------------------------------------------------------------------- /Chapter02/Chapter_02_Solutions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/Chapter_02_Solutions/index.html -------------------------------------------------------------------------------- /Chapter02/Chapter_02_Solutions/js/main_with_debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/Chapter_02_Solutions/js/main_with_debug.js -------------------------------------------------------------------------------- /Chapter02/img/dontpanic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/dontpanic.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.0.1.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.0.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.0.2.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.1.1.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.1.2.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.2.1.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.2.2.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.3.1.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.4.1.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.4.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.4.2.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.4.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.4.3.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.4.3_deprecated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.4.3_deprecated.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.4.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.4.4.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.4.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.4.5.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.4.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.4.6.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.4.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.4.7.png -------------------------------------------------------------------------------- /Chapter02/img/figure2.5.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/img/figure2.5.1.png -------------------------------------------------------------------------------- /Chapter02/main_with_debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/main_with_debug.js -------------------------------------------------------------------------------- /Chapter02/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter02/readme.md -------------------------------------------------------------------------------- /Chapter03/Chapter_03_Solutions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/Chapter_03_Solutions.zip -------------------------------------------------------------------------------- /Chapter03/Chapter_03_Solutions/css/style.css: -------------------------------------------------------------------------------- 1 | /* Stylesheet by Bucky Badger, 2022 */ -------------------------------------------------------------------------------- /Chapter03/Chapter_03_Solutions/data/MegaCities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/Chapter_03_Solutions/data/MegaCities.csv -------------------------------------------------------------------------------- /Chapter03/Chapter_03_Solutions/data/MegaCities.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/Chapter_03_Solutions/data/MegaCities.geojson -------------------------------------------------------------------------------- /Chapter03/Chapter_03_Solutions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/Chapter_03_Solutions/index.html -------------------------------------------------------------------------------- /Chapter03/Chapter_03_Solutions/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/Chapter_03_Solutions/js/main.js -------------------------------------------------------------------------------- /Chapter03/data/MegaCities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/data/MegaCities.csv -------------------------------------------------------------------------------- /Chapter03/debug_ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/debug_ajax.js -------------------------------------------------------------------------------- /Chapter03/img/figure3.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/img/figure3.1.1.png -------------------------------------------------------------------------------- /Chapter03/img/figure3.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/img/figure3.1.2.png -------------------------------------------------------------------------------- /Chapter03/img/figure3.1.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/img/figure3.1.3.png -------------------------------------------------------------------------------- /Chapter03/img/figure3.1.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/img/figure3.1.4.png -------------------------------------------------------------------------------- /Chapter03/img/figure3.1.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/img/figure3.1.5.png -------------------------------------------------------------------------------- /Chapter03/img/figure3.1.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/img/figure3.1.6.png -------------------------------------------------------------------------------- /Chapter03/img/figure3.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/img/figure3.2.1.png -------------------------------------------------------------------------------- /Chapter03/img/figure3.2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/img/figure3.2.2.png -------------------------------------------------------------------------------- /Chapter03/img/figure3.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/img/figure3.3.1.png -------------------------------------------------------------------------------- /Chapter03/img/figure3.3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/img/figure3.3.2.png -------------------------------------------------------------------------------- /Chapter03/img/figure3.3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/img/figure3.3.3.png -------------------------------------------------------------------------------- /Chapter03/img/figure3.3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/img/figure3.3.4.png -------------------------------------------------------------------------------- /Chapter03/img/final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/img/final.png -------------------------------------------------------------------------------- /Chapter03/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter03/readme.md -------------------------------------------------------------------------------- /Chapter04/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/.DS_Store -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions.zip -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/_DS_Store -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/css/style.css: -------------------------------------------------------------------------------- 1 | #map { 2 | height: 400px; 3 | width: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/data/MegaCities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/data/MegaCities.csv -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/data/MegaCities.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/data/MegaCities.geojson -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/data/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/data/_DS_Store -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/img/readme.md: -------------------------------------------------------------------------------- 1 | Add images to the img folder -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/index.html -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/js/adaptedTutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/js/adaptedTutorial.js -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/js/example2.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/js/example2.3.js -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/js/example2.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/js/example2.4.js -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/js/example2.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/js/example2.5.js -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/js/example2.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/js/example2.6.js -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/js/geojsonTutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/js/geojsonTutorial.js -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/js/quickstartTutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/js/quickstartTutorial.js -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/lib/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/lib/_DS_Store -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/lib/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/lib/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/lib/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/lib/leaflet/images/layers.png -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/lib/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/lib/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/lib/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/lib/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/lib/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/lib/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/lib/leaflet/leaflet-src.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/lib/leaflet/leaflet-src.esm.js -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/lib/leaflet/leaflet-src.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/lib/leaflet/leaflet-src.esm.js.map -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/lib/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/lib/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/lib/leaflet/leaflet-src.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/lib/leaflet/leaflet-src.js.map -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/lib/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/lib/leaflet/leaflet.css -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/lib/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/lib/leaflet/leaflet.js -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/lib/leaflet/leaflet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/Chapter_04_Solutions/lib/leaflet/leaflet.js.map -------------------------------------------------------------------------------- /Chapter04/Chapter_04_Solutions/lib/readme.md: -------------------------------------------------------------------------------- 1 | Add all JS libraries to the lib folder -------------------------------------------------------------------------------- /Chapter04/boilerplate.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/boilerplate.zip -------------------------------------------------------------------------------- /Chapter04/img/figure4.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.1.1.png -------------------------------------------------------------------------------- /Chapter04/img/figure4.1.2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.1.2.PNG -------------------------------------------------------------------------------- /Chapter04/img/figure4.1.3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.1.3.PNG -------------------------------------------------------------------------------- /Chapter04/img/figure4.1.4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.1.4.PNG -------------------------------------------------------------------------------- /Chapter04/img/figure4.1.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.1.5.png -------------------------------------------------------------------------------- /Chapter04/img/figure4.1.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.1.6.png -------------------------------------------------------------------------------- /Chapter04/img/figure4.1.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.1.7.png -------------------------------------------------------------------------------- /Chapter04/img/figure4.1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.1.8.png -------------------------------------------------------------------------------- /Chapter04/img/figure4.2.1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.2.1.PNG -------------------------------------------------------------------------------- /Chapter04/img/figure4.2.2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.2.2.PNG -------------------------------------------------------------------------------- /Chapter04/img/figure4.2.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.2.3.png -------------------------------------------------------------------------------- /Chapter04/img/figure4.2.4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.2.4.PNG -------------------------------------------------------------------------------- /Chapter04/img/figure4.2.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.2.5.png -------------------------------------------------------------------------------- /Chapter04/img/figure4.2.6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.2.6.PNG -------------------------------------------------------------------------------- /Chapter04/img/figure4.2.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.2.7.png -------------------------------------------------------------------------------- /Chapter04/img/figure4.2.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.2.8.png -------------------------------------------------------------------------------- /Chapter04/img/figure4.2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.2.9.png -------------------------------------------------------------------------------- /Chapter04/img/figure4.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/img/figure4.4.1.png -------------------------------------------------------------------------------- /Chapter04/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter04/readme.md -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions.zip -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/css/style.css -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/data/MegaCities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/data/MegaCities.csv -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/data/MegaCities.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/data/MegaCities.geojson -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/img/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/img/forward.png -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/img/readme.md: -------------------------------------------------------------------------------- 1 | Add images to the img folder -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/img/reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/img/reverse.png -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/index.html -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/js/example1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/js/example1.1.js -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/js/example1.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/js/example1.2.js -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/js/example1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/js/example1.4.js -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/js/example1.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/js/example1.5.js -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/js/example2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/js/example2.1.js -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/js/example3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/js/example3.1.js -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/js/example3.10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/js/example3.10.js -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/js/example3.13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/js/example3.13.js -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/js/example3.19.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/js/example3.19.js -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/js/example3.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/js/example3.3.js -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/js/example3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/js/example3.5.js -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/lib/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/lib/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/lib/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/lib/leaflet/images/layers.png -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/lib/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/lib/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/lib/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/lib/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/lib/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/lib/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/lib/leaflet/leaflet-src.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/lib/leaflet/leaflet-src.esm.js -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/lib/leaflet/leaflet-src.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/lib/leaflet/leaflet-src.esm.js.map -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/lib/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/lib/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/lib/leaflet/leaflet-src.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/lib/leaflet/leaflet-src.js.map -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/lib/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/lib/leaflet/leaflet.css -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/lib/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/lib/leaflet/leaflet.js -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/lib/leaflet/leaflet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/lib/leaflet/leaflet.js.map -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/lib/readme.md: -------------------------------------------------------------------------------- 1 | Add all JS libraries to the lib folder -------------------------------------------------------------------------------- /Chapter05/Chapter_05_Solutions/prepros.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/Chapter_05_Solutions/prepros.cfg -------------------------------------------------------------------------------- /Chapter05/img/figure5.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.1.1.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.1.2.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.2.1.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.2.2.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.2.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.2.3.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.3.1.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.3.2.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.3.3.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.3.4.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.3.5.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.3.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.3.6.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.4.1.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.4.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.4.2.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.4.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.4.3.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.4.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.4.4.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.4.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.4.5.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.4.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.4.6.png -------------------------------------------------------------------------------- /Chapter05/img/figure5.4.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/img/figure5.4.7.png -------------------------------------------------------------------------------- /Chapter05/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter05/readme.md -------------------------------------------------------------------------------- /Chapter06/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/.DS_Store -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions.zip -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/.DS_Store -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/css/style.css -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/data/MegaCities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/data/MegaCities.csv -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/data/MegaCities.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/data/MegaCities.geojson -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/img/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/img/forward.png -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/img/readme.md: -------------------------------------------------------------------------------- 1 | Add images to the img folder -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/img/reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/img/reverse.png -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/index.html -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/js/example1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/js/example1.3.js -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/js/example1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/js/example1.4.js -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/js/example1.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/js/example1.5.js -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/js/example1.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/js/example1.6.js -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/js/example2.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/js/example2.3.js -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/js/example2.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/js/example2.4.js -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/js/example2.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/js/example2.5.js -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/js/example2.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/js/example2.7.js -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/js/example3.4.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/js/example3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/js/example3.5.js -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/js/example3.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/js/example3.6.js -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/js/example3.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/js/example3.7.js -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/lib/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/lib/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/lib/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/lib/leaflet/images/layers.png -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/lib/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/lib/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/lib/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/lib/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/lib/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/lib/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/lib/leaflet/leaflet-src.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/lib/leaflet/leaflet-src.esm.js -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/lib/leaflet/leaflet-src.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/lib/leaflet/leaflet-src.esm.js.map -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/lib/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/lib/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/lib/leaflet/leaflet-src.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/lib/leaflet/leaflet-src.js.map -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/lib/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/lib/leaflet/leaflet.css -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/lib/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/lib/leaflet/leaflet.js -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/lib/leaflet/leaflet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/lib/leaflet/leaflet.js.map -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/lib/readme.md: -------------------------------------------------------------------------------- 1 | Add all JS libraries to the lib folder -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/prepros.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/prepros.cfg -------------------------------------------------------------------------------- /Chapter06/Chapter_06_Solutions/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/Chapter_06_Solutions/test.svg -------------------------------------------------------------------------------- /Chapter06/img/figure6.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/img/figure6.1.1.png -------------------------------------------------------------------------------- /Chapter06/img/figure6.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/img/figure6.1.2.png -------------------------------------------------------------------------------- /Chapter06/img/figure6.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/img/figure6.2.1.png -------------------------------------------------------------------------------- /Chapter06/img/figure6.2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/img/figure6.2.2.png -------------------------------------------------------------------------------- /Chapter06/img/figure6.2.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/img/figure6.2.3.png -------------------------------------------------------------------------------- /Chapter06/img/figure6.2.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/img/figure6.2.4.png -------------------------------------------------------------------------------- /Chapter06/img/figure6.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/img/figure6.3.1.png -------------------------------------------------------------------------------- /Chapter06/img/figure6.3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/img/figure6.3.2.png -------------------------------------------------------------------------------- /Chapter06/img/figure6.3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/img/figure6.3.3.png -------------------------------------------------------------------------------- /Chapter06/img/figure6.3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/img/figure6.3.4.png -------------------------------------------------------------------------------- /Chapter06/img/figure6.3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/img/figure6.3.5.png -------------------------------------------------------------------------------- /Chapter06/img/figure6.3.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/img/figure6.3.6.png -------------------------------------------------------------------------------- /Chapter06/img/figure6.3.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/img/figure6.3.7.png -------------------------------------------------------------------------------- /Chapter06/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter06/readme.md -------------------------------------------------------------------------------- /Chapter07/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/.DS_Store -------------------------------------------------------------------------------- /Chapter07/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/.DS_Store -------------------------------------------------------------------------------- /Chapter07/img/figure7.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.1.1.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.1.2.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.2.1.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.2.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.2.10.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.2.11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.2.11.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.2.2.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.2.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.2.3.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.2.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.2.4.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.2.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.2.5.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.2.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.2.6.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.2.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.2.7.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.2.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.2.8.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.2.9.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.3.1.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.3.2.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.3.3.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.3.4.png -------------------------------------------------------------------------------- /Chapter07/img/figure7.3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/img/figure7.3.5.png -------------------------------------------------------------------------------- /Chapter07/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter07/readme.md -------------------------------------------------------------------------------- /Chapter08/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/.DS_Store -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions.zip -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/.DS_Store -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/css/style.css -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/data/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/data/readme.md -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/img/readme.md: -------------------------------------------------------------------------------- 1 | Add images to the img folder -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/index.html -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example1.1.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example1.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example1.2.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example1.3.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example1.4.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example1.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example1.5.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example1.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example1.6.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example1.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example1.7.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example1.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example1.8.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example1.9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example1.9.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example2.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example2.5.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example2.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example2.6.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example2.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example2.8.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example3.1.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example3.11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example3.11.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example3.12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example3.12.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example3.14.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example3.14.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example3.15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example3.15.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example3.16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example3.16.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example3.17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example3.17.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example3.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example3.4.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example3.5.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example3.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example3.8.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/js/example3.9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/js/example3.9.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/lib/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/Chapter_08_Solutions/lib/d3.min.js -------------------------------------------------------------------------------- /Chapter08/Chapter_08_Solutions/lib/readme.md: -------------------------------------------------------------------------------- 1 | Add all JS libraries to the lib folder -------------------------------------------------------------------------------- /Chapter08/img/figure8.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.1.1.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.1.2.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.1.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.1.3.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.1.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.1.4.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.1.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.1.5.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.2.1.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.2.2.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.2.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.2.3.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.3.1.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.3.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.3.10.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.3.11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.3.11.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.3.12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.3.12.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.3.13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.3.13.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.3.2.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.3.3.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.3.4.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.3.5.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.3.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.3.6.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.3.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.3.7.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.3.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.3.8.png -------------------------------------------------------------------------------- /Chapter08/img/figure8.3.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/img/figure8.3.9.png -------------------------------------------------------------------------------- /Chapter08/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter08/readme.md -------------------------------------------------------------------------------- /Chapter09/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/.DS_Store -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions.zip -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/.DS_Store -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/css/style.css -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/data/EuropeCountries.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/data/EuropeCountries.geojson -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/data/EuropeCountries.topojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/data/EuropeCountries.topojson -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/data/FranceRegions.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/data/FranceRegions.geojson -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/data/FranceRegions.topojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/data/FranceRegions.topojson -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/data/unitsData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/data/unitsData.csv -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/img/readme.md: -------------------------------------------------------------------------------- 1 | Add images to the img folder -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/index.html -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/js/example1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/js/example1.4.js -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/js/example1.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/js/example1.5.js -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/js/example2.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/js/example2.2.js -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/js/example2.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/js/example2.3.js -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/js/example2.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/js/example2.6.js -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/js/example2.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/js/example2.8.js -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/lib/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/lib/d3.min.js -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/lib/readme.md: -------------------------------------------------------------------------------- 1 | Add all JS libraries to the lib folder -------------------------------------------------------------------------------- /Chapter09/Chapter_09_Solutions/lib/topojson.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/Chapter_09_Solutions/lib/topojson.min.js -------------------------------------------------------------------------------- /Chapter09/data/EuropeCountries.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/data/EuropeCountries.geojson -------------------------------------------------------------------------------- /Chapter09/data/FranceRegions.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/data/FranceRegions.geojson -------------------------------------------------------------------------------- /Chapter09/data/unitsData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/data/unitsData.csv -------------------------------------------------------------------------------- /Chapter09/img/figure9.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/img/figure9.1.1.png -------------------------------------------------------------------------------- /Chapter09/img/figure9.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/img/figure9.1.2.png -------------------------------------------------------------------------------- /Chapter09/img/figure9.1.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/img/figure9.1.3.png -------------------------------------------------------------------------------- /Chapter09/img/figure9.1.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/img/figure9.1.4.png -------------------------------------------------------------------------------- /Chapter09/img/figure9.2.1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/img/figure9.2.1.gif -------------------------------------------------------------------------------- /Chapter09/img/figure9.2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/img/figure9.2.2.png -------------------------------------------------------------------------------- /Chapter09/img/figure9.2.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/img/figure9.2.3.png -------------------------------------------------------------------------------- /Chapter09/img/figure9.2.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/img/figure9.2.4.png -------------------------------------------------------------------------------- /Chapter09/img/figure9.2.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/img/figure9.2.5.png -------------------------------------------------------------------------------- /Chapter09/img/figure9.2.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/img/figure9.2.6.png -------------------------------------------------------------------------------- /Chapter09/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter09/readme.md -------------------------------------------------------------------------------- /Chapter10/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/.DS_Store -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions.zip -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/.DS_Store -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/css/style.css -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/data/EuropeCountries.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/data/EuropeCountries.geojson -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/data/EuropeCountries.topojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/data/EuropeCountries.topojson -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/data/FranceRegions.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/data/FranceRegions.geojson -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/data/FranceRegions.topojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/data/FranceRegions.topojson -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/data/unitsData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/data/unitsData.csv -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/data/unitsData_incomplete.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/data/unitsData_incomplete.csv -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/img/readme.md: -------------------------------------------------------------------------------- 1 | Add images to the img folder -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/index.html -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example1.1.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example1.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example1.2.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example1.3.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example1.4.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example1.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example1.5.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example1.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example1.6.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example1.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example1.8.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example2.1.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example2.10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example2.10.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example2.12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example2.12.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example2.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example2.2.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example2.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example2.4.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example2.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example2.5.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example2.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example2.7.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/js/example2.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/js/example2.8.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/lib/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/lib/d3.min.js -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/lib/readme.md: -------------------------------------------------------------------------------- 1 | Add all JS libraries to the lib folder -------------------------------------------------------------------------------- /Chapter10/Chapter_10_Solutions/lib/topojson.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/Chapter_10_Solutions/lib/topojson.min.js -------------------------------------------------------------------------------- /Chapter10/img/figure10.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/img/figure10.1.1.png -------------------------------------------------------------------------------- /Chapter10/img/figure10.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/img/figure10.1.2.png -------------------------------------------------------------------------------- /Chapter10/img/figure10.1.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/img/figure10.1.3.png -------------------------------------------------------------------------------- /Chapter10/img/figure10.1.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/img/figure10.1.4.png -------------------------------------------------------------------------------- /Chapter10/img/figure10.1.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/img/figure10.1.5.png -------------------------------------------------------------------------------- /Chapter10/img/figure10.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/img/figure10.2.1.png -------------------------------------------------------------------------------- /Chapter10/img/figure10.2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/img/figure10.2.2.png -------------------------------------------------------------------------------- /Chapter10/img/figure10.2.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/img/figure10.2.3.png -------------------------------------------------------------------------------- /Chapter10/img/figure10.2.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/img/figure10.2.4.png -------------------------------------------------------------------------------- /Chapter10/img/figure10.2.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/img/figure10.2.5.png -------------------------------------------------------------------------------- /Chapter10/img/figure10.2.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/img/figure10.2.6.png -------------------------------------------------------------------------------- /Chapter10/img/figure10.2.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/img/figure10.2.7.png -------------------------------------------------------------------------------- /Chapter10/img/figure10.2.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/img/figure10.2.8.png -------------------------------------------------------------------------------- /Chapter10/img/figure10.2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/img/figure10.2.9.png -------------------------------------------------------------------------------- /Chapter10/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter10/readme.md -------------------------------------------------------------------------------- /Chapter11/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/.DS_Store -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions.zip -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/.DS_Store -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/css/style.css -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/data/EuropeCountries.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/data/EuropeCountries.geojson -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/data/EuropeCountries.topojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/data/EuropeCountries.topojson -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/data/FranceRegions.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/data/FranceRegions.geojson -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/data/FranceRegions.topojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/data/FranceRegions.topojson -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/data/unitsData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/data/unitsData.csv -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/data/unitsData_incomplete.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/data/unitsData_incomplete.csv -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/img/readme.md: -------------------------------------------------------------------------------- 1 | Add images to the img folder -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/index.html -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/js/example1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/js/example1.1.js -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/js/example1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/js/example1.4.js -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/js/example1.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/js/example1.6.js -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/js/example1.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/js/example1.7.js -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/js/example1.9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/js/example1.9.js -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/js/example2.10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/js/example2.10.js -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/js/example2.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/js/example2.2.js -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/js/example2.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/js/example2.4.js -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/js/example2.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/js/example2.5.js -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/js/example2.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/js/example2.6.js -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/js/example2.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/js/example2.8.js -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/lib/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/lib/d3.min.js -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/lib/readme.md: -------------------------------------------------------------------------------- 1 | Add all JS libraries to the lib folder -------------------------------------------------------------------------------- /Chapter11/Chapter_11_Solutions/lib/topojson.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/Chapter_11_Solutions/lib/topojson.min.js -------------------------------------------------------------------------------- /Chapter11/img/figure11.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/img/figure11.1.1.png -------------------------------------------------------------------------------- /Chapter11/img/figure11.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/img/figure11.1.2.png -------------------------------------------------------------------------------- /Chapter11/img/figure11.1.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/img/figure11.1.3.png -------------------------------------------------------------------------------- /Chapter11/img/figure11.1.4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/img/figure11.1.4.gif -------------------------------------------------------------------------------- /Chapter11/img/figure11.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/img/figure11.2.1.png -------------------------------------------------------------------------------- /Chapter11/img/figure11.2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/img/figure11.2.2.png -------------------------------------------------------------------------------- /Chapter11/img/figure11.2.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/img/figure11.2.3.png -------------------------------------------------------------------------------- /Chapter11/img/figure11.2.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/img/figure11.2.4.png -------------------------------------------------------------------------------- /Chapter11/img/figure11.2.5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/img/figure11.2.5.gif -------------------------------------------------------------------------------- /Chapter11/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Chapter11/readme.md -------------------------------------------------------------------------------- /Introduction/img/nsf-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Introduction/img/nsf-logo.png -------------------------------------------------------------------------------- /Introduction/img/uw-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Introduction/img/uw-logo.png -------------------------------------------------------------------------------- /Introduction/img/uwcl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Introduction/img/uwcl-logo.png -------------------------------------------------------------------------------- /Introduction/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/Introduction/readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwcartlab/webmapping/HEAD/README.md --------------------------------------------------------------------------------