Skip to content

Instantly share code, notes, and snippets.

@tyoshikawa1106
Created October 23, 2015 08:19
Show Gist options
  • Save tyoshikawa1106/0354679b07482d424761 to your computer and use it in GitHub Desktop.
Save tyoshikawa1106/0354679b07482d424761 to your computer and use it in GitHub Desktop.
GoogleMap API Sample
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<link rel="stylesheet" href="vendor/SLDS092/assets/styles/salesforce-lightning-design-system.min.css"></link>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
</style>
</head>
<body>
<div class="slds">
<header class="site-masthead slds-grid slds-page-header slds-theme--inverse">
<div class="slds-media__body slds-p-top--x-small">
<h1 class="slds-text-heading--large">GOOGLE MAP SMAPLE APP</h1>
</div>
</header>
</div>
<!-- Map (SLDSの中に含めると動かない?) -->
<div id="map"></div>
<!-- javascript -->
<script>
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?callback=initMap"
async defer></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment