I am having trouble getting GMaps.js working, I followed the instructions on https://hpneo.github.io/gmaps/examples/basic.html but the map does not appear, I am also getting the error message:
" Uncaught ReferenceError: GMaps is not defined"
in Chrome's developer tools.
Demo: http://jsfiddle.net/q80xqxxo/1/
HTML
<div id="map">MAP</div>
CSS
#map {
height:500px;
width:500px;
background-color:darkblue
}
Javascript
new GMaps({
div: '#map',
lat: -12.043333,
lng: -77.028333
});