groups = {
const groups = {
"Gosford": { x: 450, y: 150, color: "#93D1BA", cnt: 0, fullname: "Gosford" },
"Wyong": { x: 550, y: 100, color: "#BEE5AA", cnt: 0, fullname: "Wyong"},
"Hornsby": { x: 200, y: 375, color: "#79BACE", cnt: 0, fullname: "Hornsby" },
"Ryde": { x: 150, y: 500, color: "lightblue", cnt: 0, fullname: "Ryde" },
"Mona Vale": { x: 500, y: 350, color: "pink", cnt: 0, fullname: "Mona Vale"},
"Manly": { x: 450, y: 500, color: "#FAF49A", cnt: 0, fullname: "Manly"},
"RNS": { x: 300, y: 550, color: "grey", cnt: 0, fullname: "RNS" },
};
return groups
}