I have searched this problem all over the web and none of them seem to give me any resolution. I have a simple script to just display the map of South Africa.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge, chrome=1" /> <title>Map Test</title> <script language="javascript" src="https://maps.googleapis.com/maps/api/js?sensor=true"></script> <style> #map-canvas { height: 300px; width: 980px; margin: 0; padding: 0; margin-top: 10px; } </style> </head> <body> <div id="map-canvas" class="map_canvas"></div> <script type="text/javascript"> function initialize() { var mapOptions = { center: new google.maps.LatLng(-29.09958,26.18434), zoom: 5, mapTypeControlOptions: { position: google.maps.ControlPosition.TOP_LEFT } }; map = new google.maps.Map(document.getElementById('map-canvas'),mapOptions); } google.maps.event.addDomListener(window, 'load', initialize); </script> </body> </html> But I keep on getting the same error over and over. I have even tried on a different server.
Please help

