こんにちは、私は 1.ADD 、 2.EDIT 、 3.DELETE と呼ばれる 3 つのボタンを持っています。
function addComp() {
$("#comp_map").click(function() {
if (event.type !== 'mousemove') {
var containerPoint = comp_map.mouseEventToContainerPoint(event),
layerPoint = comp_map.containerPointToLayerPoint(containerPoint),
latlng = comp_map.layerPointToLatLng(layerPoint)
alert("Marker Location: "+latlng);
}
});
}
function editComp() {
// disable the map click
}
function delComp() {
// disable the map click
}
私の質問は$("#comp_map").click
、追加ボタンがクリックされたときにのみ機能したいということです...しかし、編集、削除などの他のボタンがクリックされたとき、この機能は機能しません...これはこれを行う正しい方法ですか、それとも私のアプローチが間違っている場合はお願いします訂正します... ありがとうございます...!