Google Maps API V3 InfoBox using jQuery fadeIn and fadeOut

后端 未结 6 1245
Happy的楠姐
Happy的楠姐 2021-02-06 05:18

I have searched the web high and low and have not been able to find a tutorial or example of using jQuery to fade an InfoBox/InfoWindow in Google Maps not the content the actual

6条回答
  •  灰色年华
    2021-02-06 05:47

    I do not think this is possible because Google does not provide an animation option.

    Trying to get the Dom element will not work either. The ib variable is an google.maps.InfoWindow class not a DOM element. Since there is no public interface to get the DOM element for the info window you will not be able to access this yourself.

    If you use console.log(ib.get("id")) you will see that the ID is undefined.

提交回复
热议问题