Google Maps in Flex Component - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T14:52:10Zhttp://stackoverflow.com/feeds/question/60046http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/60046/google-maps-in-flex-component1Google Maps in Flex ComponentAdamC2008-09-12T21:52:50Z2008-09-15T11:45:37Z
<p>I'm embedding the Google Maps Flash API in Flex and it runs fine locally with the watermark on it, etc. When I upload it to the server (flex.mydomain.com) I get a sandbox security error listed below: </p>
<pre><code>SecurityError: Error #2121: Security sandbox violation: Loader.content: http://mydomain.com/main.swf?Fri, 12 Sep 2008 21:46:03 UTC cannot access http://maps.googleapis.com/maps/lib/map_1_6.swf. This may be worked around by calling Security.allowDomain.
at flash.display::Loader/get content()
at com.google.maps::ClientBootstrap/createFactory()
at com.google.maps::ClientBootstrap/executeNextFrameCalls()
</code></pre>
<p>Does anyone have any experience with embedding the Google Maps Flash API into Flex components and specifically settings security settings to make this work? I did get a new API key that is registered to my domain and am using that when it's published.</p>
<p>I've tried doing the following in the main application as well as the component:</p>
<pre><code>Security.allowDomain('*')
Security.allowDomain('maps.googleapis.com')
Security.allowDomain('mydomain.com')
</code></pre>
http://stackoverflow.com/questions/60046/google-maps-in-flex-component/60453#604531Answer by Till for Google Maps in Flex ComponentTill2008-09-13T10:14:15Z2008-09-13T10:14:15Z<p>This sounds like a <code>crossdomain.xml</code> related problem? I did a quick search and there seems to be many people with the same issue. Some proxy requests through XMLHttpRequest etc..</p>
<p>Check here:
<a href="http://is.gd/2yXz" rel="nofollow">http://is.gd/2yXz</a></p>
http://stackoverflow.com/questions/60046/google-maps-in-flex-component/62227#622271Answer by AdamC for Google Maps in Flex ComponentAdamC2008-09-15T11:45:37Z2008-09-15T11:45:37Z<p>Thanks for the help. Apparently this has something to do with including the Flex app on an ASP.NET page. When I moved it over to a flat HTML file, it worked fine. I don't have time to fully investigate right now, but that seems to have fixed it.</p>