使用Google Maps(Jquery-UI-Map api),有没有办法将close事件附加到InfoWindow?

时间:2012-05-02 09:34:09

标签: jquery google-maps mobile maps infowindow

我无法确定如何使用Jquery-UI-Map api将关闭事件附加到InfoWindow。我想在InfoWindow的创建过程中附加一个close事件,或者通过链接创建它。无论采用最少的代码是什么,并符合api的其余部分的结构。

我目前的解决方案是使用google maps api事件监听器,它可以工作,但我不喜欢它。我更喜欢jOuery方法。

我目前有:

self.snMapElement.gmap('openInfoWindow', {'content': infoWindowMarkup},
                          self.selectedStreetMarker);

// Setup close event
google.maps.event.addListener(self.snMapElement.gmap('get', 'iw'), 'closeclick', 
    function() { self.removeSelectedStreetMarker(); }
);

我想使用一些方法,如果可能的话:

self.snMapElement.gmap('openInfoWindow',
    { 'content': infoWindowMarkup },
    self.selectedStreetMarker).bind('closeclick',
    function(){ self.removeSelectedStreetMarker() }
);

0 个答案:

没有答案