想要创建一个完全在浏览器中运行的 Web 应用程序,而不需要使用 Google Earth API 即时创建 KML 的后端服务器组件,其中单击“下载”按钮会激活 Web 浏览器的正常内容下载功能,或者提示保存扩展名为 .kml 的文件或通过 KML mime 类型自动启动 Google 地球。
我可以构造一个“数据:” URL 来激活下载使用 Google Earth API 在 JavaScript 中创建的 KML 文件,但这仅适用于 Chrome。部分在 FireFox 中工作,但使用“.part”文件扩展名保存,因此用户必须明确重命名文件才能在 Google 地球中打开。IE完全忽略了这一点。例如,IE 9 不支持 Javascript 生成的文件下载。我正在寻找至少使用 Chrome + FireFox + IE 的跨浏览器解决方案。
<script type="text/javascript">
var ge;
var placemark;
google.load("earth", "1");
function init() {
google.earth.createInstance('map3d', initCallback, failureCallback);
}
... some code to create some KmlObject
function download() {
// serialize as KML text to export
var placemarkText = placemark.getKml();
if (placemarkText) {
var uriContent = "data:application/vnd.google-earth.kml+xml;charset=UTF-8," +
encodeURIComponent(placemarkText);
window.open(uriContent, 'KML Download');
}
}
</script>
</head>
<body onload="init()" style="font-family: arial, sans-serif; font-size: 13px; border: 0;">
<INPUT TYPE="button" NAME="button2" Value="Download KML" onClick="javascript:download()">
<div id="map3d" style="width: 600px; height: 380px;"></div>
</body>
</html>
我已经看到了http://code.google.com/p/download-data-uri/的破解,但这仅适用于 Chrome,因此这不是一个实用的解决方案。