我正在使用基于 openlayers API 的 jquery mobile 创建一个基于 Web 的应用程序。我无法在地图上触发“taphold”事件。你能告诉我如何在地图上触发 taphold 事件。我已经尝试了许多 taphold 的例子,但不幸的是失败了。
这是我的代码:
$('#map').bind('taphold', function(e){
var position = map.getLonLatFromPixel(e.xy);
alert(position);
});