Thanks quick question
I have uploaded the code and im getting a message saying The google maps api server rejected your request the "sensor" parameter must be set to True or False
I have change the below code and cant seam to get it working any idea?
please see
Live Online Radio | Dubstep | House | Garage |
The code:
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#map_canvas { height: 100% }
</style>
<script type="text/javascript"
src="http://maps.googleapis.com/maps/api/js?key=AIzaSyANy-rlFJGI3FiY18Z2Xh-sxiK1JtjqPeU=TRUE">
</script>
<script type="text/javascript">
function initialize() {
var myOptions = {
center: new google.maps.LatLng(-34.397, 150.644),
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions);
}
</script>
</head>
<body onload="initialize()">
<div id="map_canvas" style="width:100%; height:100%"></div>
Thanks
I think its something to do with this part
src="http://maps.googleapis.com/maps/api/js?key=AIzaSyANy-rlFJGI3FiY18Z2Xh-sxiK1JtjqPeU=TRUE">