make index.html point to working sketch

frontend_sketch
Gandalf 2023-07-10 19:43:50 +02:00
parent b7f5b6b4ee
commit 6635036974
3 changed files with 12 additions and 10 deletions

View File

@ -1,10 +0,0 @@
<!DOCTYPE html>
<html>
<title>Sketch HambiMap</title>
<body>
<h2>Sketch HambiMap</h2>
<a href="main_with_title.html">Sketch with a title area above the map</a>
<br/>
<a href="main_with_sidebar.html">Sketch where I moved all the stuff from the title area to a sidebar</a>
</body>
</html>

1
sketch/html/index.html Symbolic link
View File

@ -0,0 +1 @@
main_with_sidebar.html

View File

@ -174,6 +174,7 @@ map.on('zoom', onMapZoom);
map.on('mousedown', onMapMouseDown);
map.on('mouseup', onMapMouseUp);
map.on('contextMenu', onMapContextMenu);
L.DomUtil.toBack(map);
</script>
</body>

10
sketch/html/overview.html Normal file
View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<title>Sketch HambiMap</title>
<body>
<h2>Sketch HambiMap</h2>
<a href="main_with_title.html">Sketch with a title area above the map</a>
<br/>
<a href="main_with_sidebar.html">Sketch where I moved all the stuff from the title area to a sidebar</a>
</body>
</html>