- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试向 OpenLayers map 添加一个按钮,单击该按钮时应该调用 JS 函数。我已经设法让它按照我想要的方式显示,但触发器功能不起作用。
如果我有 Control.Navigation 存在,单击按钮似乎会启动拖动事件,我什至可以通过单击该按钮来拖动 map 。但即使我删除所有其他控件,按钮的触发器处理程序也不会被调用。
我还尝试添加“autoActivate”参数(无论如何,这不会使控件因某种原因自动激活),我尝试在添加按钮后调用 activate() 函数,这似乎切换控件的“事件”属性,但它仍然不响应单击。
有人能给我指出正确的方向吗?或者发布一个工作示例?我的非工作示例如下。
谢谢,贾尼斯
<html>
<head>
<title>OpenLayers.Control.Button</title>
<style text="text/css">
.olControlButton {
position: absolute;
top: 0;
right: 0;
background: red;
width: 22px;
height: 22px;
}
</style>
<script type="text/javascript" src="http://openlayers.org/api/OpenLayers.js"></script>
<script type="text/javascript">
var map;
var panel;
function buttonClicked()
{
alert ('Button clicked.');
}
function init()
{
map = new OpenLayers.Map ('map', {controls: [/*new OpenLayers.Control.Navigation()*/]});
map.addLayer (new OpenLayers.Layer.WMS ("OpenLayers WMS", "http://vmap0.tiles.osgeo.org/wms/vmap0", {layers: 'basic'}));
map.zoomToMaxExtent();
panel = new OpenLayers.Control.Panel();
map.addControl (panel);
panel.addControls ([new OpenLayers.Control.Button ({autoActivate: true, displayClass: 'olControlButton', trigger: buttonClicked, title: 'Button is to be clicked'})]);
//panel.controls[0].activate(); <-- this does not help.
}
</script>
</head>
<body onload="init()">
<div id="map" style="border: 2px solid black; height: 500px"></div>
</body>
</html>
最佳答案
按钮 DIV 无法接收单击事件,因为面板 DIV(包含按钮)没有尺寸。您还应该设置面板 DIV 的样式。另外,面板下按钮的类是 olControlButtonItemActive
所以你需要设置它的样式而不是 olControlButton
.
OpenLayers.Control.Panel
处理子控件的激活,要让它自动激活按钮,您应该设置 defaultControl
选项 button
当实例化一个新的Panel实例时。否则,您必须单击该按钮一次才能实际触发它。
<html>
<head>
<title>OpenLayers.Control.Button</title>
<style text="text/css">
.olControlButtonItemActive {
position: absolute;
top: 0;
right: 0;
background: red;
width: 22px;
height: 22px;
}
.olControlPanel {
width: 50px;
height: 50px;
border: 1px solid black;
}
</style>
<script type="text/javascript" src="http://openlayers.org/api/OpenLayers.js"></script>
<script type="text/javascript">
var map;
var panel;
function buttonClicked()
{
alert ('Button clicked.');
}
function init()
{
map = new OpenLayers.Map ('map', {controls: [/*new OpenLayers.Control.Navigation()*/]});
map.addLayer (new OpenLayers.Layer.WMS ("OpenLayers WMS", "http://vmap0.tiles.osgeo.org/wms/vmap0", {layers: 'basic'}));
map.zoomToMaxExtent();
button = new OpenLayers.Control.Button ({displayClass: 'olControlButton', trigger: buttonClicked, title: 'Button is to be clicked'});
panel = new OpenLayers.Control.Panel({defaultControl: button});
panel.addControls([button]);
map.addControl (panel);
}
</script>
</head>
<body onload="init()">
<div id="map" style="border: 2px solid black; height: 500px"></div>
</body>
</html>
关于button - OpenLayers.Control.Button 的触发参数不会被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5965567/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!