View distictsCzechiaLow.json
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View script.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.querySelectorAll('.igm_entries_list') | |
.forEach(function(list) { | |
list.setAttribute('data-map-id','3492969'); // change to your base map ID | |
var clone = list.cloneNode(true); | |
iMapsActions.buildLists(clone); | |
list.replaceWith(clone); | |
}); |
View style.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media only screen and (min-width:780px) { | |
.imapsZoomControl-group { display:none; } | |
} |
View style.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, body { | |
height: initial !important; | |
} | |
/* to override height:100% which caused the issue */ |
View filter.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function(){ | |
var thishash = window.location.href.slice(window.location.href.indexOf('#') + 1); | |
var menuitem = 'ul#tts-filter-nav li:contains("'+thishash+'")'; | |
if(thishash.length && menuitem.length){ | |
jQuery(menuitem).click(); | |
} | |
}); |
View style.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Incorrect */ | |
.advq_question_container:has(li.quiz_incorrect_answer) .advq_answer_commentary { background:red !important; color:#fff !important; } | |
/* Correct */ | |
.advq_question_container:has(li.quiz_correct_answer) .advq_answer_commentary { background:green !important; color:#fff !important; } |
View globals.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Zoom Level for Markers on Click with Zoom on Click enabled | |
* if you do not override the value, it will default to zoom to | |
* the value double of the current zoom. | |
*/ | |
let igmMarkerZoomLevelOnClick = 32; | |
/* | |
* Opacity for base region series when drilldown or show specific map action is perfomed | |
*/ |
View quebec_regions.geojson
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View style.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.map_wrapper .map_aspect_ratio { | |
padding-top: 0 !important; | |
height: calc(100vh) !important; | |
max-height: calc(100vh) !important; | |
} | |
/* If you only want it on smaller screens */ | |
@media only screen and (max-width: 768px) { |
View styles.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.imapsCircle { | |
paint-order: stroke; | |
stroke-opacity:1; | |
stroke: #dd9933; /* change with the stroke color you want */ | |
animation: pulse-me 1s linear infinite; | |
} | |
@keyframes pulse-me { | |
0% { |
NewerOlder