How does Google\'s API make cross-domain requests back to Google, when it\'s on your website?
Looks like Google display maps using the tag
I guess they use the JavaScrit library to work out all the co-ordinates and other parameters the src url needs, then insert the
tags (along with a million other tags) into your DOM.
The full map is built up with several panes like the HTML below:
(You can paste this HTML into your own web page to see the result)
So Google Maps does NOT use AJAX or anything to get its maps, just plain images, created on the fly. So no Cross Domain issues to worry about...