Google Earth API (developers.google.com/earth/) を使用して、Google Earth グローブ インスタンスを制御できます。
ここで Javascript コードのスナップショットを参照してください。
var ge;
google.load("earth", "1");
function init() {
google.earth.createInstance('map3d', initCB, failureCB);
}
function initCB(instance) {
ge = instance;
ge.getWindow().setVisibility(true);
ge.getOptions().setStatusBarVisibility(true);
ge.getNavigationControl().setVisibility(ge.VISIBILITY_AUTO);
ge.getLayerRoot().enableLayerById(ge.LAYER_BORDERS, true);
ge.getLayerRoot().enableLayerById(ge.LAYER_ROADS, true);
var lookAt = ge.createLookAt('');
lookAt.setLatitude(41.26);
lookAt.setLongitude(-100.00);
lookAt.setRange(800000.0);
ge.getView().setAbstractView(lookAt);
}
function failureCB(errorCode) {
alert(errorCode);
}
google.setOnLoadCallback(init);
ここの HTML コードを参照してください。
<!DOCTYPE html>
<head>
<script src="http://www.google.com/jsapi"></script>
</head>
<style>
body {
margin:20px;
height:100%;
width:98%;
}
#map3d {
width:75%;
float:right;
}
</style>
<body>
<div id="map3d"></div>
</body>
</html>
wkhtml2pdf (code.google.com/p/wkhtmltopdf/) 関数 wkhtmltoimage、または PhantomJs (github.com/ariya/phantomjs/wiki/Screen-Capture) を使用してイメージ バージョンを取得できます。
それが役に立てば幸い!
乾杯、ミハイ