Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 27, 2019 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/95f6a9d5a91707524e8da6ea55cc50e7 to your computer and use it in GitHub Desktop.
Save parzibyte/95f6a9d5a91707524e8da6ea55cc50e7 to your computer and use it in GitHub Desktop.
let zoomActual = mapa.getView().getZoom();
mapa.on('moveend', function(e) {
let nuevoZoom = mapa.getView().getZoom();
if (zoomActual != nuevoZoom) {
console.log('Nuevo zoom: ' + nuevoZoom);
zoomActual = nuevoZoom;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment