Vik
Vik

Reputation: 3675

Custom Tooltips/Bubbles in Google Maps V3

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

Answers (1)

Fi_chu
Fi_chu

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

Related Questions