Last active
February 5, 2016 09:30
-
-
Save harisrozak/84089017b21c05bbcada to your computer and use it in GitHub Desktop.
Google Map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Google Map Script | |
https://developers.google.com/maps/documentation/javascript/reference#MapOptions | |
--> | |
<script src="https://maps.googleapis.com/maps/api/js?callback=initMap" async defer></script> | |
<script type="text/javascript"> | |
function initMap() { | |
var mapDiv = document.getElementById('google-map'); | |
var map = new google.maps.Map(mapDiv, { | |
center: {lat: 44.540, lng: -78.546}, | |
zoom: 8, | |
scrollwheel: false, | |
mapTypeControl: false | |
}); | |
} | |
</script> | |
<div id="google-map" style="height:400px;"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment