Contact Contacteaza-ne : Emailcontact@masaj24.roNumar contact+40 765952023 LocatieNe deplasam doar la domiciliul clientului `; this.getPanes().overlayMouseTarget.appendChild(this.div); this.tooltip = this.div.querySelector(".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.714995959131755, -74.00568350793458), cz_91836); } }, 250 ); }