You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've got a code that generates the content of an infowindow dynamically, and one of the dom generated dom elements is meant to be a zoomable image. In its basic form, the code looks like this:
var infowindow = new google.maps.InfoWindow({
content: html // The dynamically generated html which contains the infowindow
});
google.maps.event.addListener(infowindow, 'domready', function () {
$(".ZoomableImage").elevateZoom();
});
return infowindow;
For some reason I didn't figure out, the zoomable image is not being elevated (nothing happens to the image).
Have anyone encountered this before? If yes, I'd like to know your workaround.
The text was updated successfully, but these errors were encountered:
I've got a code that generates the content of an infowindow dynamically, and one of the dom generated dom elements is meant to be a zoomable image. In its basic form, the code looks like this:
For some reason I didn't figure out, the zoomable image is not being elevated (nothing happens to the image).
Have anyone encountered this before? If yes, I'd like to know your workaround.
The text was updated successfully, but these errors were encountered: