1

我一直在玩谷歌地球 API。我认为从相对 3D 的角度在地点之间画一些线会很整洁。我搜索了通用电气文档并在谷歌上搜索了答案,但没有找到任何让我走上正确道路的东西,所以我想我会发布一些代码,也许会有所了解。

下面的代码绘制了两个地方,然后在这些地方之间画了一条线。不幸的是,绘制的线将地球连接起来。当像这样以 3D 绘制时,有没有一种方法可以让它包裹到地球的轮廓?我试图以不同程度的成功来改变线的高度位置,但是当线似乎没有连接这些地方时,会以准确性和整体视觉吸引力为代价。

function init() {
    google.earth.createInstance('map3d', initCB, failureCB);
}

function initCB(instance) {
    ge = instance;
    ge.getWindow().setVisibility(true);


    //---------------------------------PLACES   

    // Create the placemark.
    var placemark = ge.createPlacemark('');
    placemark.setName("Location 1");

    // Set the placemark's location.  
    var point = ge.createPoint('');
    point.setLatitude(39.96028);
    point.setLongitude(-82.979736);
    placemark.setGeometry(point);

    // Add the placemark to Earth.
    ge.getFeatures().appendChild(placemark);


    // Create the placemark.
    var placemark2 = ge.createPlacemark('');
    placemark2.setName("Hop #2");

    // Set the placemark's location.  
    var point2 = ge.createPoint('');
    point2.setLatitude(25.7615);
    point2.setLongitude(-80.2939);
    placemark2.setGeometry(point2);

    // Add the placemark to Earth.
    ge.getFeatures().appendChild(placemark2);

    //---------------------------------FOCUS

    var lookAt = ge.createLookAt('');
    lookAt.setLatitude(39.96028);
    lookAt.setLongitude(-82.979736);
    lookAt.setRange(1000000.0);
    lookAt.setAltitude(0);
    lookAt.setTilt(45);
    ge.getView().setAbstractView(lookAt);


    //---------------------------------LINES

    // Create the placemark
    var lineStringPlacemark = ge.createPlacemark('');

    // Create the LineString
    var lineString = ge.createLineString('');
    lineStringPlacemark.setGeometry(lineString);

    // Add LineString points
    lineString.getCoordinates().pushLatLngAlt(39.96028, -82.979736, 0);
    lineString.getCoordinates().pushLatLngAlt(25.7615, -80.2939, 0);
    //lineString.setAltitudeMode(ge.ALTITUDE_CLAMP_TO_GROUND);
    //lineString.setAltitudeMode(ge.ALTITUDE_RELATIVE_TO_GROUND);
    lineString.setAltitudeMode(ge.absolute);

    // Create a style and set width and color of line
    lineStringPlacemark.setStyleSelector(ge.createStyle(''));
    var lineStyle = lineStringPlacemark.getStyleSelector().getLineStyle();
    lineStyle.setWidth(2);
    lineStyle.getColor().set('9900ffff');  // aabbggrr format

    // Add the feature to Earth
    ge.getFeatures().appendChild(lineStringPlacemark);

}

function failureCB(errorCode) {
}

google.setOnLoadCallback(init);
4

1 回答 1

3

您需要将线串上的细分设置和可选的拉伸设置为 true。

有关详细信息,请参阅https://developers.google.com/kml/documentation/kmlreference#tessellatehttps://developers.google.com/kml/documentation/kmlreference#extrude

对于 API,您的语法类似于

lineStringPlacemark.setTessellate(true);
lineStringPlacemark.setExtrude(true);

https://developers.google.com/earth/documentation/geometries上有一些额外的 API 示例

于 2012-04-09T20:26:43.813 回答