Simple web app that gets location data using Geolocation API and display it on a MapBox map
https://lp.extras.dcdevelop.xyz/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
851 B
29 lines
851 B
3 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset='utf-8'>
|
||
|
<meta name='viewport' content='width=device-width,initial-scale=1'>
|
||
|
|
||
|
<title>Location Preview</title>
|
||
|
|
||
|
<link rel='icon' type='image/png' href='/favicon.png'>
|
||
|
<link rel='stylesheet' href='/global.css'>
|
||
|
<link rel='stylesheet' href='/build/bundle.css'>
|
||
|
|
||
|
<!-- leaflet -->
|
||
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
|
||
|
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
|
||
|
crossorigin=""/>
|
||
|
|
||
|
<script defer src='/build/bundle.js'></script>
|
||
|
|
||
|
<!-- leaflet -->
|
||
|
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
|
||
|
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
|
||
|
crossorigin=""></script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
</body>
|
||
|
</html>
|