Skip to content

Instantly share code, notes, and snippets.

@carmoreira
Created May 18, 2020 14:40
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/109c23e8cd9bfe2a9ee57e05dcca3084 to your computer and use it in GitHub Desktop.
Save carmoreira/109c23e8cd9bfe2a9ee57e05dcca3084 to your computer and use it in GitHub Desktop.
Simulate click after map is ready - Interactive Geo Maps WordPress plugin
// replace with your map ID and region code.
let mapID = 21148;
let mapRegion = 'US-CA';
let mapContainer = document.getElementById('map_' + mapID);
mapContainer.addEventListener('mapready',function(ev){
iMapsManager.select(mapID,mapRegion);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment