##Introduction FlickrQuizz is a web-based game using Flickr and Google APIs where the player has to guess locations of random pictures within a city.
An initial configuration allows the player to:
- Select the city he wants to play within
- Use a specific seed if he wants to challenge his friends on the same set of pictures
- Select a preferred game mode, endless continues until the player makes too many errors in a row, the other modes limit the number of pictures
##Used APIs
- Flickr API to retrieve random pictures with geo tags.
- Google Maps API to display a map of the selected city.
- Google Maps Geolocation API to translate city names into latitude and longitude values.
##Installation
- Make sur Golang is installed
- Clone the repo
git clone https://github.com/TTalex/FlickrQuizz.git
- Set up the $GOPATH environement variable
export GOPATH=`pwd`/FlickrQuizz
- Put your own API keys in the source files
##Running it
- Run the webserver
cd FlickrQuizz/src/FlickrQuizz
go run flickrquizz.go
- Access localhost:8081
##Demo