feat(views/geomap): make full-height

This commit is contained in:
Elian Doran 2025-07-06 11:15:28 +03:00
parent 7ea37b9eb9
commit 00fd1ba137
No known key found for this signature in database

View File

@ -2,6 +2,14 @@ import ViewMode, { ViewModeArgs } from "../view_mode.js";
const TPL = /*html*/` const TPL = /*html*/`
<div class="geo-view"> <div class="geo-view">
<style>
.geo-view {
overflow: hidden;
position: relative;
height: 100%;
}
</style>
Geo View is not implemented yet. Geo View is not implemented yet.
</div>`; </div>`;
@ -20,4 +28,8 @@ export default class GeoView extends ViewMode<{}> {
return this.$root; return this.$root;
} }
get isFullHeight(): boolean {
return true;
}
} }