Qtipをインストールし、マップ上のツールチップに使用しました。
http://www.gregquinn.com/oneworld/about_people6.html
赤いピンをロールオーバーして、現在そこにあるツールチップを確認できます。
しかし、彼らは、「イタリア」(左側のテキスト)という単語をロールオーバーすると、同じツールチップがイタリアのある赤いピンの横の地図にポップアップ表示されるようにしたいと考えています。
マップ上の赤いピンの場合、ALTタグ付きの画像マップを使用して次のようなツールチップをトリガーしています。
<script class="example" type="text/javascript">
// Create the tooltips only when document ready
$(document).ready(function()
{
// We'll target all AREA elements with alt tags (Don't target the map element!!!)
$('area[alt]').qtip(
{
content: {
attr: 'alt' // Use the ALT attribute of the area map for the content
},
style: {
classes: 'ui-tooltip-tipsy ui-tooltip-shadow ui-tooltip-light'
}
});
});
</script>
Qtipのドキュメントには、位置()をターゲットにできると書かれていますがposition: { target: $('ul:first li:last') }
、その方法がわかりません。または、マップ座標をターゲットにして、これらすべてを1ページに表示できますか?