scaenae/js/main.js
2026-01-14 16:42:47 +01:00

20 lines
443 B
JavaScript

import Map from "./map.js";
/*
Main js entry for ATON web-app
===============================================*/
// Realize our app
let APP = ATON.App.realize();
// APP.setup() is required for web-app initialization
// You can place here UI setup (HTML), events handling, etc.
APP.setup = ()=>{
Map.init('map');
};
/* If you plan to use an update routine (executed continuously), you can place its logic here.
APP.update = ()=>{
};
*/