Secure websites use HTTPS
Allowing content scrolling may make it more challenging for mobile users to navigate your content, because it may overlap with your page scroll. Consider increasing the embed height instead.
<iframe
id="responsive-iframe"
src="null/en/map?isScrollable=false&primaryColor=%236253E8&view=Boundary%20Change&lang=en&year=2025&constituenciesView=all"
frameborder="0"
scrolling="no"
width="100%"
height="100%"
>
</iframe>
<script>
function adjustIframeHeight() {
const iframe = document.getElementById('responsive-iframe');
const width = iframe.offsetWidth;
if (width < 768) {
iframe.style.height = '1040px'; // ADJUST HEIGHT HERE FOR MOBILE VIEW HERE
} else {
iframe.style.height = '642px'; // FIXED HEIGHT FOR DESKTOP & TABLET SCREEN WIDTHS
}
}
window.addEventListener('load', adjustIframeHeight);
window.addEventListener('resize', adjustIframeHeight);
</script>
Feel free to use and embed this interactive map, it has been optimised for mobile, desktop and article embeddings. Please credit the Elections Department and data.gov.sg. For more information, you may email admin@data.gov.sg.