We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c9626f commit 6f8a48bCopy full SHA for 6f8a48b
1 file changed
public/javascripts/countrypagemap_new.js
@@ -87,7 +87,9 @@ $(document).ready(function () {
87
"coordinates": window.coordinates
88
}
89
};
90
- countryList.push(mapBorder);
+ if(window.countryCode != 'SO') {
91
+ countryList.push(mapBorder);
92
+ }
93
94
else if (mapType == 'location') {
95
map = new L.Map('countryMap', {
@@ -249,4 +251,4 @@ $(document).ready(function () {
249
251
markers.addLayer(tempMarker);
250
252
});
253
map.addLayer(markers);
-});
254
+});
0 commit comments