私は現在、レイヤーを開くのが初めてです。また、jquery を使用してマウスオーバー イベントを使用する際に問題が発生しています。jquery を使用してツールチップを作成しました。このツールチップはマップから座標を出力します。これが私の例です。
<?php
$init = "
map.events.register('mouseover', map, function (e) {
var lonlat = map.getLonLatFromViewPortPx(e.xy);
var selMinX=lonlat.lon-sizeSelection;
var selMaxX=lonlat.lon+sizeSelection;
var selMinY=lonlat.lat-sizeSelection;
var selMaxY=lonlat.lat+sizeSelection;
alert(e.pageX); // Showing the event.pageX isn't working.
alert(selMinX); // Showing also one of the variables above isn't working.
alert('hello'); // This msgbox works.
$(document).ready( function() {
// Obviously I need to comment the mouseover function here
// since I am already using the mouseover event.
// $('#map').mouseover(function(e) {
$('<div id='tooltip'><input type='text' id='coor'/></div>').appendTo('body');
// });
});
});
";
?>
現在、本体セクションにツールチップを追加するコードに問題があると思われるため、マップが表示されていません。ここで達成したいのは、ドキュメントに入力ボックスを含む div を表示することです。
ありがとう。