Hi,
I think you can use this example :
map = new
google.maps.Map(document.getElementById("map_canvas"),myOptions);
ctaLayer = new google.maps.KmlLayer(''http://www.xxxx.xx.uk/xml/
newbinsgr.kml',{suppressInfoWindows:true,preserveViewport:true});
google.maps.event.addListener(ctaLayer, 'click', function(obj) {
var marker = new google.maps.Marker({position: obj.position});
infowindow.setContent(obj.position);
infowindow.setPosition(obj.position);
infowindow.open(map);
});
ctaLayer.setMap(map);
/carsten
On 2 Aug., 15:52, fastapps <[email protected]> wrote:
> I would like to display the infoWindow for a kml polygon automatically
> on loading the layer. To do this I am trying to trigger a click on
> the polygon. In order to specify the location I pass the LatLng to
> the trigger.
>
> map = new google.maps.Map(document.getElementById("map_canvas"),
> myOptions);
> ctaLayer = new google.maps.KmlLayer('http://www.xxxx.xx.uk/xml/
> newbinsgr.kml');
>
> google.maps.event.addListener(ctaLayer,'click',function(kmlEvent)
> {
> });
>
> var aLatLng = new google.maps.LatLng(51.5, 0.15);
> google.maps.event.addListener(map,'click',aLatLng)
>
> There are 2 problems 1) the infowindow does not dsplay 2) the only
> data that gets passed to the listener is that which is passed to the
> trigger call ie I only get what I already know !
>
> Is this correct ?
>
> (If I click on the polygon with the mouse I get the infowindow
> displayed and the listener receives the data for the polygon.)
>
> Thanks
--
You received this message because you are subscribed to the Google Groups
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.