ここにコードを入力してくださいここにコードを入力してください。画像が追加され、その場所の座標が取得されます。また、jquery uiを使用して画像draggalbeを作成しました。画像が追加されるたびに、クリックされた画像の座標と領域を示す div も生成されます。その新しく生成された div には、その分割を削除する削除ボタンがあります。その削除ボタンに、その div に対応して追加されている特定の画像も削除する必要があります。このおかげで何か助けていただければ幸いです。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>MyMapImage</title>
<style type="text/css">
#container {
background: green;
width: 596px;
height: 218px;
position: relative;
cursor: crosshair;
}
#container img {
position: absolute;
opacity:0.95;
}
#container img.cross {
position: absolute;
}
</style>
<style type="text/css">
#draggable {font-size:x-large; border: thin solid black; width: 5em; text-align: center}
</style>
<script type="text/javascript">
$(document).ready(function() {
$(".WindSh").click(function(e) {
e.preventDefault();
var x = e.pageX - this.offsetLeft;
var y = e.pageY - this.offsetTop;
var img = $('<img>');
img.css('top', y-23);
img.css('left', x-23);
img.attr('src', 'cross.png');
img.attr('class','cross');
img.appendTo('#container');
img.draggable({
containment: "parent"
});
})
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$('.WindSh').click(function(e) {
var offset = $(this).offset();
var xz= e.clientX - this.offsetLeft;
var yz= e.clientY - offset.top;
if (parseInt(xz)>= 38 && parseInt(xz)<=200 && parseInt(yz)>=15 && parseInt(yz)<=98)
{
$('<div/>').append((xz) + ", " + (yz) + " ; " + "You have selected Region 1")
.appendTo('#coordinates');
}
else if (parseInt(xz)> 200 && parseInt(xz)<=401 && parseInt(yz)>=15 && parseInt(yz)<=98)
{
$('<div/>').append ((xz) + ", " + (yz) + " ; " + "You have selected Region 2")
.appendTo('#coordinates');
}
else if (parseInt(xz)> 401 && parseInt(xz)<=540 && parseInt(yz)>15 && parseInt(yz)<=98)
{
$('<div/>').append ((xz) + ", " + (yz) + " ; " + "You have selected Region 3")
.appendTo('#coordinates');
}
else if (parseInt(xz)> 12 && parseInt(xz)<=200 && parseInt(yz)>98 && parseInt(yz)<=186)
{
$('<div/>').append ((xz) + ", " + (yz) + " ; " + "You have selected Region 4")
.appendTo('#coordinates');
}
else if (parseInt(xz)> 200 && parseInt(xz)<=401 && parseInt(yz)>98 && parseInt(yz)<=186)
{
$('<div/>').append ((xz) + ", " + (yz) + " ; " + "You have selected Region 5")
.appendTo('#coordinates');
}
else if (parseInt(xz)> 401 && parseInt(xz)<=540 && parseInt(yz)>98 && parseInt(yz)<=186)
{
$('<div/>').append ((xz) + ", " + (yz) + " ; " + "You have selected Region 6")
.appendTo('#coordinates');
}
});
});
</script>
<script type="text/javascript">
$(document).ready(function(){
$('.hide').click(function(){
$('.cross').hide();
});
});
</script>
</head>
<body
<div id="container"><img class="WindSh" src="WindShield.png"></div>
<div>Coordinates x,y: <span id="coordinates"></span></div>
<input type="button" class="hide" value="hide">
</body>
</html>