ONOS-2789, ONOS-2797 -- GUI - added S.Korea and Australia map ID's.

Change-Id: I8e3d27385c99d4549a06f9d98572718bfd15d92d
diff --git a/web/gui/src/main/webapp/app/view/topo/topo.js b/web/gui/src/main/webapp/app/view/topo/topo.js
index 313673f..2189410 100644
--- a/web/gui/src/main/webapp/app/view/topo/topo.js
+++ b/web/gui/src/main/webapp/app/view/topo/topo.js
@@ -318,6 +318,14 @@
             // but the map looks weird without it showing.
             return c.properties.adm0_a3 === 'GBR' ||
                 c.properties.adm0_a3 === 'IRL';
+        },
+
+        s_korea: function (c) {
+            return c.properties.adm0_a3 === 'KOR';
+        },
+
+        australia: function (c) {
+            return c.properties.adm0_a3 === 'AUS';
         }
     };