├── LICENSE
├── README.md
├── data
├── Trade Gothic LT Bold.ttf
├── cities_nat_500k3s.geojson
├── cities_nat_500k3s.js
├── dot-logo.svg
├── favicon.svg
├── top-logo.svg
├── web-card.svg
└── webcard.png
├── index.html
└── main.js
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2017 Jeff Allen
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 | ## city-guesser
3 |
4 | 
5 |
6 | City-Guesser is a map-based quiz game designed to test one's knowledge of urban form and transportation network structure of cities around the world.
7 |
8 | Play here: http://schoolofcities.github.io/city-guesser/index.html
9 |
10 | The game is simple. You are given an unlabeled map, and you have to guess which city it represents. If you guess correctly, you move onto the next round. Each round gets progressively more difficult as more obscure cities are added into the choice set. A level counter and game score is updated each time you guess correctly. If you guess wrong, you have to restart, but a high score is saved for future reference.
11 |
12 | The map was designed and built using Mapbox and QGIS, with data from OpenStreetMap and Natural Earth.
13 |
14 |
--------------------------------------------------------------------------------
/data/Trade Gothic LT Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jamaps/city-guesser/454e81d8c252cb3cfef81c0d9c08aff5917a0f63/data/Trade Gothic LT Bold.ttf
--------------------------------------------------------------------------------
/data/dot-logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
170 |
--------------------------------------------------------------------------------
/data/favicon.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
51 |
--------------------------------------------------------------------------------
/data/top-logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
225 |
--------------------------------------------------------------------------------
/data/webcard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jamaps/city-guesser/454e81d8c252cb3cfef81c0d9c08aff5917a0f63/data/webcard.png
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |