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 = ()=>{ }; */