我正在尝试在某个功能上创建一个点击/触摸以处理某些操作。它可以在Chrome浏览器上使用。但是,当我在Android手机/平板电脑上安装apk时,它不起作用。
我的环境:
-科尔多瓦8
-角度6
-打开第4.5层
this.map.on('singleclick', (evt) => {
//console.log("map clicked");
let coord = this.map.getEventCoordinate(evt.originalEvent);
let feature = this.map.forEachFeatureAtPixel(evt.pixel,
(feature) => {
//console.log("Feature found on click!")
return feature;
}, {hitTolerance: 10});
if (feature) {
var coordinates = feature.getGeometry().getCoordinates();
//console.log("Feature Clicked: " + feature.getId() + "("+ feature.name +")"+ " [ " + coordinates[0] + ", " + coordinates[1] + " ]");
this.toggleTooltip(feature, true);
}
else {
//console.log("Feature not found on click");
this.toggleTooltip(null, null);
}
feature.changed();
});
我尝试使用hitTolerance
,但没有任何运气。
请帮助!