Hello,
i'm using v3, loading it async, creating the map object, then markers
and paths work ok, but when i try to set map bounds as
// mymap, northeast , southwest are checked and look ok
google.maps.event.addListener ( mymap , 'idle' , function ( ) {
// fit map boundaries
var bounds = new google.maps.LatLngBounds ( northeast ,
southwest ) ;
mymap.map.fitBounds ( bounds ) ;
} ) ;
LatLngBounds() still returns undef even as an event listener.
The full story is here:
https://gusev.pro/test.html
Could you please advice how to get it worked?
Thanks!