マーカーの位置に応じてウェイポイントをデータベースに保存するプロジェクトがあります。このマーカーでカスタム アイコンを使用したいので、ルート マーカー (緑色のマーカー) を抑制しました。
しかし、マーカーを別のポイントに移動しても、マーカーの位置に応じてレンダリングラインは変更されません。マーカーの位置を変更するときに、このレンダラーを「更新」したいと考えています。
これは、元のバージョンの私のプロジェクトへのリンク です。ここに私のコードがあります:(私の試みで編集)
var map, ren, ser;
var data = {};
var data2 = {};
var marker;
var infowindow;
var directionsDisplay;
var wayA = [];
var wayB = [];
var directionResult = [];
function goma()
{
var mapDiv = document.getElementById('mappy');
var mapOptions = {
zoom: 12,
center: new google.maps.LatLng(-23.563594, -46.654239),
mapTypeId : google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map( mapDiv, mapOptions );
google.maps.event.addListener(map, "click", function(event) {
if (wayA.length == wayB.length) {
wayA.push(new google.maps.Marker({
draggable: true,
position: event.latLng,
map: map
}));
} else {
wayB.push(new google.maps.Marker({
draggable: true,
position: event.latLng,
map: map
}));
ren = new google.maps.DirectionsRenderer( {'draggable':true, suppressMarkers : true} );
ren.setMap(map);
ren.setPanel(document.getElementById("directionsPanel"));
ser = new google.maps.DirectionsService();
ser.route({ 'origin': wayA[wayA.length-1].getPosition(), 'destination': wayB[wayB.length-1].getPosition(), 'travelMode': google.maps.DirectionsTravelMode.DRIVING},function(res,sts) {
if(sts=='OK') {
directionResult.push(res);
ren.setDirections(res);
} else {
directionResult.push(null);
}
});
}
});
}