HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/RMourik/bassol.nl/CMS/CMSWebParts/Maps/Static/StaticGoogleMaps_files/GoogleMaps.js
function addGoogleMarker(map, latitude, longitude, title, content, zoom, iconURL) {
    // Initialize point coordinates
    var point = new google.maps.LatLng(latitude, longitude);
    // Create Marker object
    var marker = new google.maps.Marker({
        map: map,
        position: point,
        title: title,
        icon: iconURL
    });
    // Create info window object
    var wname = new google.maps.InfoWindow({
        content: content
    });
    // Register click event
    google.maps.event.addListener(marker, 'click', function() {
        map.setCenter(point);
        var oZoom = map.getZoom();
        if (oZoom != zoom) { map.setZoom(zoom); }
        wname.open(map, marker);
    });
}