Reputation: 3675
I know there's pdMarker(http://www.pixeldevelopment.com/pdmarker.asp) that works wonderfully with Maps API v2 to produce custom tooltips and bubbles. But how about for V3?
Upvotes: 2
Views: 880
Reputation: 11
Right now pdmarker works perfectly fine for V3, you just need to use V3 methods when working with map:
google.maps.event.addListener(marker, "mouseover", function (e) {
ib.open(map, marker);
});
Upvotes: 1