├── .gitattributes
├── README.md
├── castle.svg
├── ghosthouse.svg
├── hill_with_eyes.svg
├── index.html
├── pipe.svg
├── pointer.svg
├── script.js
├── star.svg
├── style.css
└── yoshi_house.svg
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Building a Super Mario themed Google map!
2 |
3 | This project will show you how to build a custom styled Google map using the Google Cloud Platform and the Google Maps JavaScript API.
4 |
5 | Check out the [full project](https://www.codementor.io/projects/build-a-custom-google-maps-theme-bf8levr6eg) on DevProjects by Codementor.
6 |
7 | ## Instructions
8 |
9 | The code here requires a Google Cloud Platform API key and a Google Maps custom Map ID in order to work.
10 |
11 | The places that need updating are:
12 |
13 | * Add the API_KEY and MAP_ID in the `
18 |
19 |
20 |
22 |