67 lines
1.8 KiB
HTML
67 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Traque | Client conscrit</title>
|
|
|
|
<!-- LEAFLET INCLUDE -->
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.8.0/dist/leaflet.css"
|
|
integrity="sha512-hoalWLoI8r4UszCkZ5kL8vayOGVae1oxXe/2A4AO6J9+580uKHDO3JdHb7NzwwzK5xr/Fs0W40kiNHxM9vyTtQ=="
|
|
crossorigin=""/>
|
|
<script src="https://unpkg.com/leaflet@1.8.0/dist/leaflet.js"
|
|
integrity="sha512-BB3hKbKWOc9Ez/TAwyWxNXeoV9c1v6FIeYiBieIWkpLjauysF18NzgR1MBNBXf8/KABdlkX68nAhlwcDFLGPCQ=="
|
|
crossorigin=""></script>
|
|
|
|
<!-- SOCKET.IO INCLUDE -->
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
|
|
<style type="text/css">
|
|
#map { height: 600px; }
|
|
#below {
|
|
position: fixed;
|
|
bottom: 0px;
|
|
z-index: 10000;
|
|
background-color: white;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
|
|
<script type="text/javascript" src="/utils.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="map"></div><br/>
|
|
|
|
<div id="below">
|
|
<input id="message"/><button id="sendMessage">Enter code</button><br/>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// SETUP MAP
|
|
|
|
setup_map();
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// SOCKET
|
|
|
|
id = "%ID"; // %ID will be replaced by the real id.
|
|
setup_socket_common();
|
|
setup_socket_not_admin();
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// SETTINGS -- CODE
|
|
|
|
document.querySelector('#sendMessage').addEventListener('click', function(){
|
|
const input = document.querySelector('#message');
|
|
|
|
socket.emit("code", {"content": input.value});
|
|
});
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// GEOLOCALISATION
|
|
|
|
setup_geoLoc();
|
|
</script>
|
|
</body>
|
|
</html>
|