}
border: 1px solid black;
width: 800px;
height: 800px;
#map {
/* Add some basic styling to our map */
Creating a Custom Map with Google My Maps
var myMap = new google.maps.Map(document.getElementById("map"), {
center: {lat: 37.7749, lng: -122.4194},
zoom: 12
});
// Set the map's title and bounds
myMap.setCenter({lat: 37.7749, lng: -122.4194}, 15);
// Add a marker to our map
var marker = new google.maps.Marker({
position: {lat: 37.7763, lng: -122.4185},
title: "Hello World!"
});
// Set the map's zoom level and bounds
myMap.setCenter({lat: 37.7749, lng: -122.4194}, 15);
myMap.setZoom(18);
google.maps.event.addListener(marker, 'click', function() {
var infoWindow = new google.maps.InfoWindow();
infoWindow.setContent("You are here!");
infoWindow.setPosition(marker.position);
window.showInfoWindow();
});
https://www.google.com/maps/d/viewer?mid=1sRrBOr-NUHrHi_TK6dxssz-a_XrGsH8P