Free and lazy geoguess game with no ads. Players compete how close the player can guess random locations in five rounds. You can share the score with other people via social media like Facebook or Twitter. You can play multiplayer game with your friends up to five friends. The first player creates a room and decide the room size. Other players type the same room name as the first player created and the game will start.
You need to configure Google Maps Platform and Firebase to make game work. See the instructions below.
Once you get an API key and register the project with Firebase, create files named .env.development.local
and .env.production.local
inside this project to put environment variables.
The files should be like this.
.env.production.local
NODE_ENV=production
VUE_APP_API_KEY=YOUR_GOOGLE_MAPS_API_KEY
VUE_APP_FIREBASE_API_KEY=YOUR_FIREBASE_API_KEY
VUE_APP_FIREBASE_PROJECT_ID=YOUR_FIREBASE_PROJECT_ID
VUE_APP_FIREBASE_MESSAGING_SENDER_ID=YOUR_FIREBASE_MESSAGING_SENDER_ID
VUE_APP_FIREBASE_APP_ID=YOUR_FIREBASE_APP_ID
VUE_APP_FIREBASE_MEASUREMENT_ID=YOUR_FIREBASE_MEASUREMENT_ID
.env.development.local
NODE_ENV=development
...
Now you can run this game.
Download Node.js here if you don't have and make sure you can run npm
from the terminal.
# install dependencies
npm install
# run locally
npm run serve
# build for production
npm run build
You need to host this project as a static website to play multiplayer game with your friends. I recommend using Netlify. You can just fork this project and deploy it from Netlify. Also you can manage environment variables on the Netlify console.
- Free game with no ads
- Multiplayer game
- PWA and responsive design
Paulo Gomes, UI design
Licensed under MIT License
Feel free to give me feedback.