diff --git a/doc-img/shield_map_world.svg b/doc-img/shield_map_world.svg index ddbc5d94f..d3ff141a2 100644 --- a/doc-img/shield_map_world.svg +++ b/doc-img/shield_map_world.svg @@ -172,7 +172,8 @@ See the end of this file for a list of available jurisdictions and their codes. .au, .nz, .cw, -.ust { fill: #8250df; } +.ust, +.akrotiridhekelia { fill: #8250df; } /* Color individual borders For example, to color the border between Angola and Namibia in green, add this line in the space below: diff --git a/scripts/status_map.js b/scripts/status_map.js index 930cc2e6c..a83f59765 100644 --- a/scripts/status_map.js +++ b/scripts/status_map.js @@ -13,6 +13,10 @@ function fillPaths(svg, codes) { // Routes in United States insular areas use US prefix with the U.S. selectors.add(".ust"); } + if (selectors.has(".cy")) { + // The Cyprus road network includes Akrotiri and Dhekelia (British Overseas Territory). + selectors.add(".akrotiridhekelia"); + } return svg.replace(".supported", new Array(...selectors).join(",\n")); }