Sha256: 002075f9049cc79d3d8f40ef79e65dc951d6c4e56e352a8b926b1634cc916ca9
Contents?: true
Size: 712 Bytes
Versions: 18
Compression:
Stored size: 712 Bytes
Contents
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Map</title> <script> function initialize() { var myLatlng = new google.maps.LatLng( 51.520838, -0.140261 ); var myOptions = { zoom: 15, center: myLatlng, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map( document.getElementById( "map_canvas" ), myOptions ); } </script> <script src="http://maps.google.com/maps/api/js?sensor=false"></script> <style> html { height: 100%; overflow: hidden; } body { margin: 0; padding: 0; height: 100%; } #map_canvas { height: 100%; } </style> </head> <body onload="initialize()"> <div id="map_canvas"></div> </body> </html>
Version data entries
18 entries across 18 versions & 1 rubygems