Skip to content

Instantly share code, notes, and snippets.

@carmoreira
Created April 22, 2020 14:41
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Set map selection based on URL hash - Interactive Geo Maps.
// replace with your map ID.
let mapID = 21148;
let mapContainer = document.getElementById('map_' + mapID);
mapContainer.addEventListener('mapready',function(ev){
let hash = window.location.hash.substr(1);
if(hash){
iMapsManager.select(mapID,hash);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment