You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.1 KiB
HTML
51 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>tilerendertest</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.main {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #ebebeb;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.map {
|
|
/* background-color: #ddd; */
|
|
background-color: #cdcdcd;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
/* width: 512px;
|
|
height: 512px; */
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="main">
|
|
<div class="container">
|
|
<canvas class="map" id="map"></canvas>
|
|
</div>
|
|
</div>
|
|
<script src="./index.js" type="module"></script>
|
|
</body>
|
|
|
|
</html> |