20 lines
No EOL
456 B
HTML
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> |