-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (22 loc) · 1.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image" href="/src/assets/Soilify-Logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Soil and Crop Monitor</title>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src='https://api.mapbox.com/mapbox-gl-js/v3.4.0/mapbox-gl.js'></script>
<link href='https://api.mapbox.com/mapbox-gl-js/v3.4.0/mapbox-gl.css' rel='stylesheet' />
</head>
<body>
<script src="https://unpkg.com/@turf/turf@6/turf.min.js"></script>
<script
src="https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v5.0.0/mapbox-gl-geocoder.min.js"></script>
<link rel="stylesheet"
href="https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v5.0.0/mapbox-gl-geocoder.css" type="text/css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/apexcharts/dist/apexcharts.css">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>