add hotspotsRIT page

This commit is contained in:
2023-10-24 17:06:48 -04:00
parent 0f116ecaf5
commit 43d9812406
7 changed files with 2283 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='css/hotspots.css') }}" />
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""
/>
<script
src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""
></script>
<script src="{{ url_for('static', filename='js/lib/leaflet-providers.js') }}"></script>
<script src="{{ url_for('static', filename='js/lib/CUSTOM.leaflet.curve.js') }}"></script>
</head>
<body>
<div id="map"></div>
<script src="{{ url_for('static', filename='js/hotspots.js') }}"></script>
</body>