commit | 1178d5b3357fc0e578f023ae715e85356c2ecd66 | [log] [tgz] |
---|---|---|
author | Simon Hunt <simon@onlab.us> | Wed Sep 02 17:02:37 2015 -0700 |
committer | Simon Hunt <simon@onlab.us> | Wed Sep 02 17:02:49 2015 -0700 |
tree | 15b54f927b94086a8a6b23fb438e7db972e1e7c2 | |
parent | 5d4396f92837e2124d06bc2a8324501084be1e74 [diff] |
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'; } };