Simon Hunt

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

Change-Id: I8e3d27385c99d4549a06f9d98572718bfd15d92d
...@@ -318,6 +318,14 @@ ...@@ -318,6 +318,14 @@
318 // but the map looks weird without it showing. 318 // but the map looks weird without it showing.
319 return c.properties.adm0_a3 === 'GBR' || 319 return c.properties.adm0_a3 === 'GBR' ||
320 c.properties.adm0_a3 === 'IRL'; 320 c.properties.adm0_a3 === 'IRL';
321 + },
322 +
323 + s_korea: function (c) {
324 + return c.properties.adm0_a3 === 'KOR';
325 + },
326 +
327 + australia: function (c) {
328 + return c.properties.adm0_a3 === 'AUS';
321 } 329 }
322 }; 330 };
323 331
......