1

对于我的问题,我找不到任何有用的答案。我从 kml 导出了点。现在我必须将这一点与谷歌地图 api v3 上的线连接起来。我该怎么做?

4

1 回答 1

2

像这样(gLine 是一个全局变量,gTheMap 是谷歌地图对象);

   // draw a line connecting the points
    var Endpoints = [marker1.position, marker2.position];

    if (gLine == null)
    {
        gLine = new google.maps.Polyline(
            {   path: Endpoints,
                strokeColor: "#FFFF00",
                strokeOpacity: 1.0,
                strokeWeight: 2,
                map: gTheMap
            });
    }
    else
       gLine.setPath(Endpoints);

我在这里写了一篇博客。

于 2012-12-16T17:37:37.537 回答