openlayers-3在等待时改变光标

时间:2015-10-13 12:35:19

标签: javascript openlayers-3

如何在等待某些操作结束时更改光标? 使用下面的代码,光标不会改变。我想我需要刷新,但我不知道如何触发它。

map.on('singleclick', function(evt) {
    myfunc(evt); });

myfunc(evt) {
    map.getViewport().style.cursor = 'wait';
    // do some lengthy processing
    map.getViewport().style.cursor = 'pointer';
    }

1 个答案:

答案 0 :(得分:2)

CreateModelMixin

使用getTargetElement()。此外,无需创建匿名函数。