2011-11-09 7 views
5

Googleマップの結果を次のようにチェックしてください:http://g.co/maps/htdvaGoogle Maps JS:ホバー上に小さなツールチップマーカーを表示し、クリック時に通常の情報ウィンドウを取得するにはどうすればよいですか?

マーカーの上にカーソルを合わせると、ツールチップが表示されます。あなたがそれをクリックすると、大きな情報ウィンドウが表示されます。 this stackoverflow answer

ここでミニツールヒントや情報ウィンドウの両方の画像です:私は経由でうまく働い情報ウィンドウが持っている enter image description here

ここjsFiddleのデモです:のタイトルプロパティを設定しhttp://jsfiddle.net/3VMPL/

答えて

7

あなたが望むツールチップにマーカーを追加します。

var tooltip = "some text"; 
marker = new google.maps.Marker({map:map, position:position, title:tooltip}); 
+0

私はあなたがここで何をしようとしているのか分かりません。あなたはjsFiddleを共有してもいいですか:http://jsfiddle.net/3VMPL/ – CloudMagick

+0

あなたは、その中にテキストがあるマーカー上のロールオーバーでボックスをポップアップさせます。私はここであなたの編集http://jsfiddle.net/so1connor/APTYA –

+0

ありがとう、しかし、私は標準的なHTMLタイトルのツールチップについて話していません。 OPの添付画像をご覧ください。デイリークイーンのツールチップが私が興味を持っているものです(このリンクをチェック:http://g.co/maps/htdva)。 Google Mapsをもっと調べたら、これは地図APIの一部ではないようですが、別のツールチップを実装しているようです。 – CloudMagick

1

私はあなたがここで見つけることができます何をしたいと思います:

https://developers.google.com/maps/documentation/javascript/examples/infowindow-simple

// This example displays a marker at the center of Australia. 
// When the user clicks the marker, an info window opens. 

function initialize() { 
    var myLatlng = new google.maps.LatLng(-25.363882,131.044922); 
    var mapOptions = { 
    zoom: 4, 
    center: myLatlng 
    }; 

    var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions); 

    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: myLatlng, 
     map: map, 
     title: 'Uluru (Ayers Rock)' 
    }); 
    google.maps.event.addListener(marker, 'click', function() { 
    infowindow.open(map,marker); 
    }); 
} 

google.maps.event.addDomListener(window, 'load', initialize); 
+0

リンク先が将来縮まる可能性があるので、コードの関連部分をここに追加してください... – Naruto

+0

@ナルト確かに私はGoogleの地図ドキュメントで提供されたコードで私のコメントを編集している:) – GSof

0

あなたが唯一のCSSでそれを行うことができますが、それはかなりハックだし、任意の時間に作業を停止することができますことを警告します

.gmnoprint[title] { 
 
    overflow: visible !important; 
 
    opacity: 1 !important; 
 
} 
 

 
.gmnoprint[title]:after { 
 
    content: attr(title); 
 
    /* Style your tooltip */ 
 
}
:Googleはそのマークアップを変更した場合

関連する問題