GoogleMapsAPIでCannot call method ‘apply’ of undefinedエラーが出た時の対処法です。
1 2 3 4 5 |
google.maps.event.addListener(target, 'click', getAAAA()); function getAAA(){ alert(); } |
イベントを追加しているこの処理を少し変えて
1 2 3 4 5 6 7 |
google.maps.event.addListener(target, 'click', function () { getAAA(); }); function getAAA(){ alert(); } |
に変えるとOK