admin管理员组文章数量:1344201
I've been looking at the animation features of openlayers and I can see how simple it is to zoom to a given point and resolution using
view.animate({
center: position,
zoom: 11
});
but what I can't figure out is how to animate
map.getView().fit(extent, map.getSize());
Can anybody give me some pointers?
Thanks in advance
I've been looking at the animation features of openlayers and I can see how simple it is to zoom to a given point and resolution using
view.animate({
center: position,
zoom: 11
});
but what I can't figure out is how to animate
map.getView().fit(extent, map.getSize());
Can anybody give me some pointers?
Thanks in advance
Share Improve this question asked Feb 21, 2017 at 14:10 mat-mcloughlinmat-mcloughlin 6,73213 gold badges49 silver badges63 bronze badges 01 Answer
Reset to default 11The fit function does support animations in Openlayers 3. The third parameter is an object where different options (duration, easing...) can be set, and you can do it easily:
map.getView().fit(extent, map.getSize(), { duration: 1000 });
You can take a look at the Openlayers 3 API to see more details about the options parameter.
I have also created a jsFiddle example where you can see this working.
Be careful! OpenLayers v4.0.1 is here:
With the recently released version of Openlayers, some things related to this method were changed, so if you read the documentation for the fit function in the latest Openlayers API you will find that only 2 parameters are allowed now, since the size does not need to be passed as parameter (However, it can be assigned in the options parameter). So your example adapted to Openlayers v4.0.1 would be like follows:
map.getView().fit(extent, { duration: 1000 });
It's important to keep these changes in mind because it can bring confussion while you use the official API.
本文标签: javascriptOpenLayers animate getView()fit()Stack Overflow
版权声明:本文标题:javascript - OpenLayers animate getView().fit() - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743741925a2531050.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论