Though unfortunately not yet mentioned in Maps API v3 (non-Premier) documentation, the "other_params" property is mentioned in the Loader documentation, Maps API Premier documentation, and Maps API v2 documentation.
. http://code.google.com/apis/ajax/documentation/#DetailedDocumentation > "... other_params: This is an object that contains options typically only supported by a particular API (and usually very specific to the API). If you would typically send in a parameter by via a script tag for an API, you can send it in other_params instead. ..." . http://www.google.com/search?q=site:code.google.com/apis/maps/documentation+google.load+other_params+-inurl:https&filter=0 http://code.google.com/apis/maps/documentation/javascript/v2/basics.html#SpecifyingSensor http://code.google.com/apis/maps/documentation/premier/guide.html#CommonLoader > google.load("maps","3", {"other_params": [...] }); . Alternatively you can load the API dynamically via script element. For v3: function apiLoaded() { ... } var script = document.createElement("script"); script.type = "text/javascript"; script.src = "http://maps.google.com/maps/api/js? v=3&callback=apiLoaded&sensor=false"; document.body.appendChild(script); -- omr -- You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-ajax-search-api?hl=en.
