我有一组从方向服务的结果中检索到的编码折线,并且已将它们存储在php数组中。
使用下面的代码,我可以添加一条折线。如何修改它以同时添加多条折线?
var code = '_mjsB{qp{LvAe@xImCjGgBf@St@Qf@Un@e@Hm@Pc@VW^MhAc@`B{@lAw@zCyA`@KvEyB`Ao@PQNK';
var paths = google.maps.geometry.encoding.decodePath(code);
var flightPath = new google.maps.Polyline({
path:pathss,
strokeColor: "#0000FF",
strokeOpacity: 1.0,
strokeWeight: 2
}); flightPath.setMap(map);
最佳答案
您是否希望所有折线具有相同的样式,或者它们对于不同的折线需要不同的样式?现在假设它们是相同的。让我知道他们是否需要与众不同,我们可以调整代码。
因此,首先,编写PHP代码以生成编码路径的JavaScript数组。我让您整理一下这一部分。
然后,使用JavaScript编写一个简单的循环以解码每个路径并将其添加到地图中:
// These are the encoded paths generated from PHP
var encodedFlightPaths = [
'...first-path...',
'...second-path...',
'...third-path...'
];
addEncodedPaths( encodedFlightPaths );
function addEncodedPaths( encodedPaths ) {
for( var i = 0, n = encodedPaths.length; i < n; i++ ) {
addEncodedPath( encodedPaths[i] );
}
}
function addEncodedPath( encodedPath ) {
var path = google.maps.geometry.encoding.decodePath( encodedPath );
var polyline = new google.maps.Polyline({
path: path,
strokeColor: "#0000FF",
strokeOpacity: 1.0,
strokeWeight: 2
});
polyline.setMap( map );
}
关于javascript - 使用api v3绘制多条编码的折线,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15601524/