どのように、私は「クリック」の代わりに「Heading_change」を処理するために以下のコードを変更する方法を見つけるのに苦労しています。誰かがこれを管理しましたか?マウスクリックがない場合でも、それは(イベント)のままですか?
google.maps.event.addListener(map, 'click', addLatLng);
/**
* Handles click (or other) events on a map, and adds a new point to the Polyline.
* @param {MouseEvent} mouseEvent
*/
function addLatLng(event) {
var path = flightPath.getPath();
// Because path is an MVCArray, we can simply append a new coordinate
// and it will automatically appear
path.push(event.latLng);
// Add a new marker at the new plotted point on the polyline.
var marker = new google.maps.Marker({
position: event.latLng,
title: '#' + path.getLength(),
map: map
});alert("Done");
}