Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. function zoomTo() {
  2. map.beforeRender(
  3. ol.animation.pan({
  4. source: map.getView().getCenter(),
  5. duration: 150
  6. }),
  7.  
  8. ol.animation.zoom({
  9. resolution: map.getView().getResolution(),
  10. duration: 500,
  11. easing: ol.easing.easeIn
  12. })
  13. );
  14. map.getView().fit(Houses1860b.getSource().getExtent(), map.getSize());
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement