Я использую первое решение.вот мой код.
var map;
var polyGidis;
var polyDonus;
var pozsGidis = [];
var pozsDonus = [];
function init() {
var myOptions = {
zoom: 5,
center: new google.maps.LatLng(39.00, 35.00),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('divMap'), myOptions);
polyGidis = new google.maps.Polyline({ strokeColor: 'black', strokeOpacity: 0.8, strokeWeight: 2, map: map, zIndex: 100 });
polyDonus = new google.maps.Polyline({ strokeColor: 'red', strokeOpacity: 0.8, strokeWeight: 6, map: map, zIndex: 80 });
var polyPathGidis = polyGidis.getPath();
var polyPathDonus = polyDonus.getPath();
for (var i = 0; i < pozsGidis.length; i++) {
polyPathGidis.push(new google.maps.LatLng(pozsGidis[i].lat, pozsGidis[i].lng));
}
for (var i = 0; i < pozsDonus.length; i++) {
polyPathDonus.push(new google.maps.LatLng(pozsDonus[i].lat, pozsDonus[i].lng));
}
}