40 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
    <head>
 | 
						|
        <title>RoutesMaker</title>
 | 
						|
        <meta http-equiv="content-type" content="text/html;charset=utf-8" />
 | 
						|
        <meta charset="utf-8" />
 | 
						|
        <meta name="viewport" content="width=device-width,initial-scale=1.0" />
 | 
						|
 | 
						|
        <link type="text/css;charset=utf-8" data-language="CSS3" rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" data-crossorigin="anonymous" charset="utf-8" />
 | 
						|
        <link type="text/css;charset=utf-8" data-language="SASS/CSS3" rel="stylesheet" href="/scss/RoutesMaker.css" data-scss="/scss/RoutesMaker.scss" data-css-map="/scss/RoutesMaker.css.map" data-crossorigin="anonymous" charset="utf-8" />
 | 
						|
 | 
						|
        <style data-type="text/css;charset=utf-8" data-language="CSS3" charset="utf-8">
 | 
						|
 | 
						|
            html,body{
 | 
						|
                height : 100%;
 | 
						|
                margin : 0em;
 | 
						|
            }
 | 
						|
 | 
						|
        </style>
 | 
						|
 | 
						|
        <script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
 | 
						|
 | 
						|
        <script type="module" data-type="text/javascript;charset=utf-8" data-language="ECMAScript 2015" charset="utf-8">
 | 
						|
            "use strict";
 | 
						|
 | 
						|
            import {RoutesMaker} from "./ecma/Application/RoutesMaker.ecma.js";
 | 
						|
 | 
						|
            try{
 | 
						|
                const routes_maker = new RoutesMaker("body", routes_maker => {
 | 
						|
                    // console.log("PASA");
 | 
						|
                });
 | 
						|
            }catch(exception){
 | 
						|
                console.error(exception);
 | 
						|
            };
 | 
						|
 | 
						|
        </script>
 | 
						|
 | 
						|
    </head>
 | 
						|
    <body></body>
 | 
						|
</html> |