Skip to content

Instantly share code, notes, and snippets.

@johnstew
Created November 4, 2013 01:53
Show Gist options
  • Save johnstew/7296989 to your computer and use it in GitHub Desktop.
Save johnstew/7296989 to your computer and use it in GitHub Desktop.
google maps quick start
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
var map;
function initialize() {
var mapOptions = {
zoom: 8,
center: new google.maps.LatLng(-34.397, 150.644),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map-canvas"></div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment