<html>
<body>
<h1>My First Google Map</h1>
<div id="map" style="width:100%;height:400px;"></div>
<script>
function myMap() {
var mapCanvas = document.getElementById("map");
var mapOptions = {
center: new google.maps.LatLng(51.5, -0.2), zoom: 10
};
var map = new google.maps.Map(mapCanvas, mapOptions);
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBu-916DdpKAjTmJNIgngS6HL_kDIKU0aU&callback=myMap"></script>
<!--
To use this code on your website, get a free API key from Google.
Read more at: https://www.w3schools.com/graphics/google_maps_basic.asp
-->
</body>
<!-- Mirrored from www.w3schools.com/whatis/tryit.asp?filename=trywhatis_google_maps by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:56:09 GMT -->
</html>