mirror of
https://github.com/MrUnknownDE/utools.git
synced 2026-04-06 00:32:04 +02:00
17 lines
418 B
JavaScript
Executable File
17 lines
418 B
JavaScript
Executable File
// Google Maps
|
|
|
|
// Initialize and add the map
|
|
function initMap() {
|
|
// The map, centered at Uluru
|
|
const map = new google.maps.Map(document.getElementById("map"), {
|
|
zoom: 4,
|
|
center: '{$details->loc}',
|
|
});
|
|
// The marker, positioned at Uluru
|
|
const marker = new google.maps.Marker({
|
|
position: {'{$details->loc}',
|
|
map: map,
|
|
});
|
|
}
|
|
|
|
window.initMap = initMap; |