GET IN TOUCH WITH US

Contact us today!

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

    `; this.getPanes().overlayMouseTarget.appendChild(this.div); this.tooltip = this.div.querySelector(".codevz-map-tooltip"); // Show title on click this.div.addEventListener("click", (event) => { event.stopPropagation(); this.tooltip.style.display = this.tooltip.style.display === "block" ? "none" : "block"; }); // Hide title when clicking outside google.maps.event.addListener(this.map, "click", () => { this.tooltip.style.display = "none"; }); } draw() { const overlayProjection = this.getProjection(); const position = overlayProjection.fromLatLngToDivPixel(this.position); if (position && this.div) { this.div.style.left = `${position.x}px`; this.div.style.top = `${position.y}px`; } } onRemove() { if (this.div) { this.div.parentNode.removeChild(this.div); this.div = null; } } } // Add a custom marker at a specific location new CustomMarker(new google.maps.LatLng(40.712784, -74.005941), cz5996); }