Add code and style for basic map display

This commit is contained in:
don philipe
2024-03-31 20:25:18 +02:00
parent bb8b0bd4ad
commit 0e378867c1
19 changed files with 9024 additions and 0 deletions

7
src/main/webapp/lib.js Normal file
View File

@@ -0,0 +1,7 @@
let lib = new function () {
this.setStartMarker = function (coordinates) {
}
this.setMarker = function (marker, lng, lat, map) {
marker.setLngLat([lng, lat]).addTo(map);
};
};