0

バイナリを持っていない別のアプリケーションを制御するアプリケーションを作成する場合、
たとえば、それ自体で Google Earth を開き、アプリケーションが特定のポイントにカメラを配置するアプリケーション、たとえば -24,131 を指定します。をクリックし、Google Earth にコマンドを送信して、画像を特定のフォルダーに保存します。

これに対するアプローチは何ですか?実行されている関数を知り、そのような制御プログラムに代わってそれらを起動するにはどうすればよいですか? また、画像を取得できるように、画像のダウンロードが終了したことも知る必要があります。

Google Earth 用の API があるのを見ましたが、それを使用して Google Earth (アプリケーション自体) を制御できるかどうかはわかりません。

4

1 に答える 1

0

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) を使用してイメージ バージョンを取得できます。

それが役に立てば幸い!

乾杯、ミハイ

于 2013-09-09T06:10:27.383 に答える