谷歌地图API方向三角形图标不明确

时间:2013-08-16 07:00:50

标签: google-maps-api-3

我正在使用Google Map API V3来显示车辆行驶路径及其路线方向。但是通过谷歌方向图标,很难找到方向。下图更详细说明  enter image description here

我看到了每个图标,它是

enter image description here source

我找到了图像路径,它是 enter image description here

http://www.google.com/intl/en_ALL/mapfiles/dir_0.png

如何制作好方向图标?

2 个答案:

答案 0 :(得分:6)

V3中有一些predefined symbols(例如箭头)可用于IconSequence
有关演示,请参阅http://jsfiddle.net/doktormolle/V3gMT/

答案 1 :(得分:0)

P1和P2是要点。

重点是: ({lat:纬度,lng:经度

经度和纬度是带有坐标的值。

function MapsP2P(p1, p2)
    //dipuja linea de punto a punto
        { 
            if (p1.lat != 0) { 
                var line = new google.maps.Polyline({
                    path: [
                        new google.maps.LatLng(p1.lat, p1.lng),
                        new google.maps.LatLng(p2.lat, p2.lng)
                    ],
                    strokeColor: "#0000FF",
                    strokeOpacity: 1.0,
                    strokeWeight: 1,

                    icons: [{
                          icon: {
                                  path: google.maps.SymbolPath.FORWARD_CLOSED_ARROW,
                                  strokeColor:'#0000ff',

                                  fillColor:'#000000',
                                  fillOpacity:1
                                },
                          repeat:'100px',
                          path:[]
                       }],

                    map: map
                })
                lines.push(line);
            }
    }