In my page, I have some markers and I want to show a title on each marker on hover. This was simple in Google Maps as we were using title parameter for google.maps.Marker() object. I couldn't find anything like in Here Maps and I decided to make a simple, similar one.
Now I have a nokia.maps.map.Container() which has one infobuble, one marker and two events: mouseenter and mouseleave. I can open infobubble in mouseenter event, but I can't close it in mouseleave event. I'm trying to use closeBubble(), but I'm unsuccessful.
Here is the fiddle of my work so far: http://jsfiddle.net/ffAKX/
How can I close that opened infobubble when mouse leaves marker object? Or is there any simple way to do this like title parameter of google.maps.Marker() object?