9 lines
257 B
JavaScript
9 lines
257 B
JavaScript
// Load the map from the Google Maps JS API
|
|
function loadMap() {
|
|
const map = new google.maps.Map(document.getElementById("map"), {
|
|
center: {lat: 0, lng: 0}, // Center of the globe
|
|
zoom: 2
|
|
});
|
|
}
|
|
|
|
// Add custom markers from meteor data
|