feat(geomap): create geomap note type

This commit is contained in:
Elian Doran
2025-01-20 18:45:56 +02:00
parent 7f15f8a7de
commit e1952fe6b8
10 changed files with 76 additions and 18 deletions

View File

@@ -0,0 +1,18 @@
import NoteContextAwareWidget from "./note_context_aware_widget.js";
const TPL = `\
<div class="geo-map-widget">
Map goes here.
</div>`
export default class GeoMapWidget extends NoteContextAwareWidget {
constructor(widgetMode: "type") {
super();
}
doRender() {
this.$widget = $(TPL)
}
}