作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在 Openlayers 3 中禁用 DragPan 交互(已定义 map 时)?
另外,为什么我无法使用 mousemove 事件?
我正在这样做:map.on('mousemove',function(e){ ...});
它不起作用。
最佳答案
要禁用交互,您需要从 map 中删除它 .如果您没有交互的引用,可以使用 getInteractions
找到它。 map 方法:
var dragPan;
map.getInteractions().forEach(function(interaction) {
if (interaction instanceof ol.interaction.DragPan) {
dragPan = interaction;
}
}, this);
if (dragPan) {
map.removeInteraction(dragPan);
}
var map = new ol.Map({
layers: layers,
interactions: ol.interaction.defaults({
dragPan: false
}),
view: new ol.View({
center: [0, 0],
zoom: 2
})
});
ol.interaction.defaults
的所有可能选项的列表.
关于openlayers-3 - 如何在 OpenLayers 3 中禁用 DragPan?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29097178/
我是一名优秀的程序员,十分优秀!