Skip to content

Commit

Permalink
chore: make dots smaller (temp)
Browse files Browse the repository at this point in the history
  • Loading branch information
SanjitRaman committed Jun 16, 2024
1 parent ad37d35 commit f6f88a8
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions server/map_demo/website/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>Map with Waypoints</title>
Expand All @@ -8,23 +9,27 @@
position: relative;
display: inline-block;
}

#map {
display: block;
}

.waypoint {
position: absolute;
width: 10px;
height: 10px;
width: 2px;
height: 2px;
background-color: red;
border-radius: 50%;
cursor: pointer;
}

#camera-image {
display: none;
margin-top: 20px;
}
</style>
</head>

<body>
<div id="map-container">
<img id="map" src="" alt="Map">
Expand All @@ -33,4 +38,5 @@
<img id="camera-image" src="" alt="Camera Image">
<script src="script.js"></script>
</body>
</html>

</html>

0 comments on commit f6f88a8

Please sign in to comment.