Skip to content

Instantly share code, notes, and snippets.

@marcoah
Created October 20, 2019 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcoah/66ec10c3a61e030b95d31b62030964f1 to your computer and use it in GitHub Desktop.
Save marcoah/66ec10c3a61e030b95d31b62030964f1 to your computer and use it in GitHub Desktop.
Mostrar un Mapa con la API de Google Maps
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
html, body { height: 100%; margin: 0; padding: 0; }
#map { height: 100%; }
</style>
</head>
<body>
<div id="map"></div>
<script type="text/javascript">
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 12
});
}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=[API_KEY]&callback=initMap">
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment