2017-10-07 8 views
-1

Googleマップマーカーをクリックしたときに表示される情報にボタンを表示する方法はありますか?Googleマップのマーカーボタンに連絡する

マーカの場所の1つをクリックしたときに、そのマーカに接続されている情報がポップアップし、クリックするとメッセージボックスがポップアップするというメッセージボタンが表示されます。

私は超初心者ですが、習っている人でも、やっている人がプロセスの正確な名前を教えてもらうことさえできます。

+0

この「情報ウィンドウ」について読むことができます - https://developers.google.com/maps/documentation/javascript/infowindows – thanhnha1103

+0

「マーカーをクリックすると機能する方法を使用できます。どのユーザーがこのボタンを操作してそのボタンをクリックすると、メッセージボックスのポップアップが表示され、もう一度ボタンが非表示になります。また、選択したマーカーに関連する値をポップアップに渡すことができます。 –

答えて

0

infowindowを宣言するときは、infowindowcontentをパラメータとして渡す必要があります。ここで

function initMap() { 
    var uluru = {lat: -25.363, lng: 131.044}; 
    var map = new google.maps.Map(document.getElementById('map'), { 
     zoom: 4, 
     center: uluru 
    }); 

    var contentString = '<div id="content">'+ 
     '<div id="siteNotice">'+ 
     '</div>'+ 
     '<h1 id="firstHeading" class="firstHeading">Uluru</h1>'+ 
     '<div id="bodyContent">'+ 
     '<p><b>Uluru</b>, also referred to as <b>Ayers Rock</b>, is a large ' + 
     'sandstone rock formation in the southern part of the '+ 
     'Northern Territory, central Australia. It lies 335&#160;km (208&#160;mi) '+ 
     'south west of the nearest large town, Alice Springs; 450&#160;km '+ 
     '(280&#160;mi) by road. Kata Tjuta and Uluru are the two major '+ 
     'features of the Uluru - Kata Tjuta National Park. Uluru is '+ 
     'sacred to the Pitjantjatjara and Yankunytjatjara, the '+ 
     'Aboriginal people of the area. It has many springs, waterholes, '+ 
     'rock caves and ancient paintings. Uluru is listed as a World '+ 
     'Heritage Site.</p>'+ 
     '<p>Attribution: Uluru, <a href="https://en.wikipedia.org/w/index.php?title=Uluru&oldid=297882194">'+ 
     'https://en.wikipedia.org/w/index.php?title=Uluru</a> '+ 
     '(last visited June 22, 2009).</p>'+ 
     '</div>'+ 
     '</div>'; 

    var infowindow = new google.maps.InfoWindow({ 
     content: contentString 
    }); 

    var marker = new google.maps.Marker({ 
     position: uluru, 
     map: map, 
     title: 'Uluru (Ayers Rock)' 
    }); 
    marker.addListener('click', function() { 
     infowindow.open(map, marker); 
    }); 
    } 

は、あなたが簡単なmap、シンプルと巨大なテキストを持つinfowindow定義:これは一例です。

<button type="button">Click Me!</button>contentStringに追加してボタンを追加できます。

infowindowsについてはgoogle's documentationw3schoolsのボタンの例については、こちらをご覧ください。