Google地图通过线条连接点

时间:2012-12-16 17:17:35

标签: google-maps

我无法为我的问题找到任何有用的答案。我从kml导出了点数。现在我必须在谷歌地图api v3上用线连接这一点。我怎么能这样做?

1 个答案:

答案 0 :(得分:2)

像这样(gLine是一个全局var,gTheMap是Google地图对象);

   // 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);

我在博客上发表了这篇文章here