Google Maps is a web mapping service developed by Google. Like many other Google web applications, Google Maps uses JavaScript extensively. Google Maps API allow to display maps on your website or blog. It is a free web mapping service.
<!DOCTYPE html> <html> <head> <title>Heading title</title> <script src="http://maps.googleapis.com/maps/api/js"></script> <script> function initialize() { var mapProp = { center: new google.maps.LatLng(51.508742,-0.120850), zoom:8, mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById("googleMap"),mapProp); } google.maps.event.addDomListener(window, 'load', initialize); </script> </head> <body> <div id="googleMap" style="width:600px;height:300px;"></div> <br> </body> </html>