Path : /var/www/html/phkaymedia/public/js/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/phkaymedia/public/js/google-map.js |
function initMap() { const myLatLng = { lat: 13.66343375987936, lng: 102.5538364421791 }; const map = new google.maps.Map(document.getElementById("map"), { mapId: "6cea43a5b877639e", center: myLatLng, zoom: 17, mapTypeControl: false, streetViewControl: false, fullscreenControl: false, }); const marker = new google.maps.Marker({ position: myLatLng, map, title: "Phkay Media", icon: { url: "../map-logo.png", // scaleSize: new google.maps.Size(32,32) }, }); const infowindow = new google.maps.InfoWindow({ content: "<h6 class='text-warning text-center'>☆ Phkay Media</h6> <p class='text-dark'>Kbal Spean Commune, Poipet City, Banteay Meachey Provice, Cambodia.</p>", }); marker.addListener("click", () => { infowindow.open({ anchor: marker, map, shouldFocus: false, }); }); }