Add code and style for basic map display
This commit is contained in:
7
src/main/webapp/lib.js
Normal file
7
src/main/webapp/lib.js
Normal 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);
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user