Google Maps Api версия 3 - PullRequest
       5

Google Maps Api версия 3

0 голосов
/ 01 февраля 2011

Я использую Google Map API версии 3. Теперь я хочу связать маркеры с линией, чтобы можно было создать путь между маркерами. Любое решение?

1 Ответ

2 голосов
/ 01 февраля 2011

Создать линию между двумя маркерами используйте это

var Polyline_Coordinates = [
new google.maps.LatLng(42.357778,-71.061667), // your location lattitude and longitude
new google.maps.LatLng(40.716667,-74), 
new google.maps.LatLng(41.836944,-87.684444),
new google.maps.LatLng(34.05,-118.25) 
];
var Polyline_Path = new google.maps.Polyline({
path: Polyline_Coordinates,
strokeColor: "#000000",
// color of the outline of the polyline
strokeOpacity: 1.0,
// between 0.0 and 1.0
strokeWeight: 5
// The stroke width in pixels
});
Polyline_Path.setMap(map);
...