Sonstige Popup per mouseove
This commit is contained in:
@@ -18,11 +18,11 @@ function DataSheet() {
|
||||
const GisSystemStatic = useRecoilValue(gisSystemStaticState);
|
||||
|
||||
useEffect(() => {
|
||||
console.log(
|
||||
/* console.log(
|
||||
"GisStationsStaticDistrict in DataSheet:",
|
||||
GisStationsStaticDistrict
|
||||
);
|
||||
console.log("GisSystemStatic in DataSheet:", GisSystemStatic);
|
||||
console.log("GisSystemStatic in DataSheet:", GisSystemStatic); */
|
||||
|
||||
// Filtern der eindeutigen Gebiete (Areas) und alphabetisches Sortieren
|
||||
const seenNames = new Set();
|
||||
@@ -63,7 +63,7 @@ function DataSheet() {
|
||||
name: area.Name,
|
||||
}));
|
||||
setSystemListing(newSystemListing);
|
||||
console.log("System Listing:", systemListing);
|
||||
//console.log("System Listing:", systemListing);
|
||||
}, [GisStationsStaticDistrict]);
|
||||
|
||||
const [checkedStations, setCheckedStations] = useState({});
|
||||
@@ -194,23 +194,23 @@ function DataSheet() {
|
||||
};
|
||||
|
||||
const handleStationChange = (event) => {
|
||||
console.log("Station selected:", event.target.value);
|
||||
//console.log("Station selected:", event.target.value);
|
||||
};
|
||||
|
||||
const resetView = () => {
|
||||
console.log("View has been reset");
|
||||
};
|
||||
useEffect(() => {
|
||||
console.log("Checked Stations:", checkedStations);
|
||||
//console.log("Checked Stations:", checkedStations);
|
||||
// Wenn systemListing.name == "TALAS" ist, gib in der Konsole aus
|
||||
const talasStation = systemListing.find(
|
||||
(station) => station.name === "TALAS"
|
||||
);
|
||||
if (talasStation) {
|
||||
console.log(
|
||||
/* console.log(
|
||||
"TALAS Station ist gecheckt:",
|
||||
checkedStations[talasStation.id]
|
||||
);
|
||||
); */
|
||||
}
|
||||
}, [checkedStations, systemListing]);
|
||||
const eciStation = systemListing.find((station) => station.name === "ECI");
|
||||
|
||||
Reference in New Issue
Block a user