Yah,
But  I resolved already my problem.
Here is the code for those who will be needing it.

var infowindow;

function AddMarker(where, title, info, icon, width, height) {

var marker = new google.maps.Marker({

position: where,

map: map,

title: title,

icon: "http://www.something/"; + icon

});

marker.set('infowindow', new google.maps.InfoWindow({

content: '<iframe frameborder="0" src="' + info + '" class="'+getCSS(icon)+'"
scrollbar="no"></iframe>',

position: where

}));

 google.maps.event.addListener(marker, 'click', function() {

if (infowindow) {

infowindow.close();

}

infowindow = this.get('infowindow');

infowindow.open(map,this);

});

manager.add(marker);

}




On Wed, Nov 4, 2009 at 5:34 PM, Rossko <[email protected]> wrote:

> > Any news of the below problem?
>
> You're still using v3
> http://groups.google.com/group/google-maps-js-api-v3/
>
> --
>
>  You received this message because you are subscribed to the Google Groups
> "Google Maps API" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<google-maps-api%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-maps-api?hl=en.
>
>
>

--

You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-api?hl=en.


Reply via email to