Skip to content

Instantly share code, notes, and snippets.

@carmoreira
Last active February 15, 2022 21:28
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 carmoreira/891615308ccb0826d4d056c2a949d16f to your computer and use it in GitHub Desktop.
Save carmoreira/891615308ccb0826d4d056c2a949d16f to your computer and use it in GitHub Desktop.
Increase default zoom step on maps for Interactive Geo Maps
// replace with your map ID
let mapID = 21148;
let mapContainer = document.getElementById('map_' + mapID);
mapContainer.addEventListener('mapready',function(ev){
iMaps.maps[mapID].map.zoomStep = 3;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment