add satellite overlay toggle

This commit is contained in:
hgrsd
2022-03-22 22:57:56 -04:00
parent 1b30f320b5
commit 9b7e02ef61
9 changed files with 211 additions and 55 deletions

View File

@@ -400,3 +400,17 @@ export function fetchSourceError(msg) {
msg,
};
}
export const USE_SATELLITE_TILES_OVERLAY = "USE_SATELLITE_TILES_OVERLAY";
export function useSatelliteTilesOverlay() {
return {
type: USE_SATELLITE_TILES_OVERLAY,
};
}
export const RESET_TILES_OVERLAY = "RESET_TILES_OVERLAY";
export function resetTilesOverlay() {
return {
type: RESET_TILES_OVERLAY,
};
}