Simon Hunt

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

Change-Id: I8e3d27385c99d4549a06f9d98572718bfd15d92d
......@@ -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';
}
};
......