e11en / pokemon-go-map

A interactive map for pokemon GO
GNU General Public License v3.0
6 stars 5 forks source link

Pokemon GO Map

An interactive map for pokemon GO.

pokemon.ellenlangelaar.nl.

screenshot of the app

Still To Do

How To Make It Work

Create a config.js and config.php file in the root of the site and fill the $GLOBALS['config'] array with the following, you can also see the config.example.js/php files

PHP

$GLOBALS['config'] = [
    // DATABASE
    'DBHOST' => 'localhost',
    'DBNAME' => 'database',
    'DBUSER' => 'username',
    'DBPASS' => 'password',
];

JS

var $GLOBALS = {
    'GA_ID': 'GOOGLE ANALYTICS ID'
};