Fixed
Status Update
Comments
ro...@gmail.com <ro...@gmail.com> #3
Example 1. Just trying to attach your gmaps script.
If you open the developer console, you will see that gmaps init script is loaded, but "getScript("https://maps.gstatic.com/intl/en_us/mapfiles/api-3/9/8/main.js ");" line isn't working, there is no new script in the document after document.write.
If you open the developer console, you will see that gmaps init script is loaded, but "getScript("
Description
myBounds.extend(myPoint);
myBounds.union(yourBounds);
map.fitBounds(myBounds);
If these functions returned the modified object, we could chain these calls, and write:
map.fitBounds(myBounds.extend(myPoint).union(yourBounds));
Much nicer.