remove logs

This commit is contained in:
Adam 2023-04-25 11:07:31 -04:00
parent b98d6d6feb
commit 2649e53e81

View file

@ -25,12 +25,10 @@ export default function MapScatLayer(props: any) {
} else if (stations.error) {
return stations.error
} else {
console.log('start');
let buf: ScatData[] = [];
for (const station of stations()) {
buf.push({ coordinates: [station.Loc.Coordinates[1], station.Loc.Coordinates[0]] })
};
console.log('stop')
return buf;
};
};