回答了我自己的问题。
http://livedocs.adobe.com/flex/3/html/help.html?content=ProgrammingHTMLAndJavaScript_11.html
“将应用程序内容加载到非应用程序沙箱”部分回答了它。
解决方案:
我需要两个 html 文件,一个加载到 flex 中的文件只包含一个 iframe,它试图加载我想要显示的实际文件。
capture2.html(加载到 HTML 组件中)
<iframe width="100%" height="100%"
src="capture.html"
sandboxRoot="http://google.com/"
documentRoot="app:/google-map-capture/">
</iframe>
然后在我真正想要显示的文件(capture.html)中:
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
html, body, #map-canvas {
margin: 0;
padding: 0;
height: 100%;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
var map;
function initialize() {
var mapOptions = {
zoom: 8,
center: new google.maps.LatLng(-34.397, 150.644),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map-canvas"></div>
</body>
</html>
完美运行。