googlemap のマーカーにマウスをホバーさせた時にイベントを発生させていたのですが、
下記の通りのエラーが発生してしまい動きません。
Uncaught TypeError: _this2.markers[i].addListener is not a function at eval
該当箇所は下記の部分です。
this.markers[i].addListener('mouseover', function() {
vue.js のコードは下記の通りです。
js
1export default { 2 data() { 3 return { 4 map: null, 5 markers: [], 6 infoWindow: [], 7 markerLatLng: null, 8 } 9 }, 10 mounted (){ 11 this.setMap(); 12 }, 13 methods: { 14 fetchDatas: async function (){ 15 //初期データ取得する。 16 await axios.get( 17 '/map/api/points/' 18 ).then( 19 response => (this.markers = response.data) 20 ).catch(function (error) { 21 alert("データの取得に失敗しました。") 22 }) 23 }, 24 setMap: async function () { 25 await this.fetchDatas() 26 let timer = setInterval(() => { 27 if(window.google){ 28 clearInterval(timer); 29 //マップを描画する。 30 this.map = new window.google.maps.Map(document.getElementById("map"), { 31 center: {lat: this.markers[0]["lat"], lng: this.markers[0]["lng"]}, 32 zoom: 15 33 }); 34 for (var i = 0; i < this.markers.length; i++) { 35 // マーカーを描画する。 36 new window.google.maps.Marker({ 37 position: {lat: this.markers[i]["lat"], lng: this.markers[i]["lng"]}, 38 map:this.map, 39 }) 40 // マーカーの情報を設定する。 41 this.infoWindow[i] = new window.google.maps.InfoWindow({ 42 content: '<div class="balloon">' + this.markers[i]['title'] + '</div>' 43 }); 44 // マーカーのイベントを設定する。 45 this.markers[i].addListener('mouseover', function() { 46 this.infoWindow[i].open(this.map, this.markers[i]); 47 }); 48 } 49 } 50 },500) 51 }, 52 } 53}
どのようにしたら、マーカーのイベントを設定できますでしょうか。
ご教授頂けたら幸いです。よろしくお願いいたします。
※ javascript でべたに書いていた時は下記の通りに書いて動いておりました。
// function setMap () { // // マップの描画 // var mapLatLng = new window.google.maps.LatLng({lat: markerData[0]['lat'], lng: markerData[0]['lng']}); // map = new window.google.maps.Map(document.getElementById('map'), { // mapTypeControl: false, // center: mapLatLng, // zoom: 15 // }); // // オートコンプリート // var input = document.getElementById('search-text'); // var LatLngFrom = new google.maps.LatLng(35.692195,139.7576653); // var LatLngTo = new google.maps.LatLng(35.696157,139.7525771); // var bounds = new google.maps.LatLngBounds(LatLngFrom, LatLngTo); // var options = { // types: ['(regions)'], // bounds: bounds, // componentRestrictions: {country: 'jp'} // }; // autocomplete = new google.maps.places.Autocomplete( input, options); // // ポイントのステータス設定 // for (var i = 0; i < markerData.length; i++) { // markerLatLng = new window.google.maps.LatLng({lat: markerData[i]['lat'], lng: markerData[i]['lng']}); // marker[i] = new window.google.maps.Marker({ // position: markerLatLng, // map: map // }); // infoWindow[i] = new window.google.maps.InfoWindow({ // content: '<div class="balloon">' + markerData[i]['title'] + '</div>' // }); // markerEvent(i); // } // // マップクリック時のイベント設定 // map.addListener('click', function(e){ // map.panTo(e.latLng); // getAddress(e.latLng); // }); // } // // マーカーのマウスホバー時とクリック時のイベント // function markerEvent(i) { // marker[i].addListener('mouseover', function() { // infoWindow[i].open(map, marker[i]); // }); // marker[i].addListener('mouseout', function() { // infoWindow[i].close(map, marker[i]); // }); // marker[i].addListener('click', function() { // openEditModal(markerData[i], i) // }); // }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/05/12 10:55
2021/05/12 11:45
退会済みユーザー
2021/05/12 12:30