我有下一個代碼。初始化後如何更改路徑值Google地圖
這是行得通的,但例如在另一個本地代碼中,當我嘗試更改路徑"flightPath.strokeOpacity = 0"
時動態地不顯示此更改。
我想知道如何動態更改路徑。這個功能在我點擊按鈕時開始。
function initialize() {
var mapOptions = {
zoom: 3,
center: new google.maps.LatLng(0, -180),
mapTypeId: google.maps.MapTypeId.TERRAIN
};
var map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
var flightPlanCoordinates = [
new google.maps.LatLng(37.772323, -122.214897),
new google.maps.LatLng(21.291982, -157.821856),
new google.maps.LatLng(-18.142599, 178.431),
new google.maps.LatLng(-27.46758, 153.027892)
];
var flightPath = new google.maps.Polyline({
path: flightPlanCoordinates,
geodesic: true,
strokeColor: '#FF0000',
strokeOpacity: 1.0,
strokeWeight: 2
});
flightPath.setMap(map);
}
google.maps.event.addDomListener(window, 'load', initialize);
你定義'flightpath'就地就近'initialize'。如果你想在該函數之外使用該變量,則必須全局聲明它。 – Andy