osm-map-js/scripts/test_template.html
2025-09-13 03:41:49 +09:00

20 lines
No EOL
456 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>OSM Map Test : {{test_name}}</title>
<style>
body { background: #333; color: #ddd}
</style>
<script src="{{bundle}}"></script>
</head>
<body>
<canvas id="canvas-test"></canvas>
<script src="{{test_script}}"></script>
<script>
fetch('{{data}}')
.then(response => response.text())
.then(data => { test(document.getElementById('canvas-test'), data); } );
</script>
</body>
</html>