Pas d'erreur de code mais timeout sur la géolocalisation
This commit is contained in:
commit
2b3b10e0fb
4 changed files with 227 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
node_modules
|
||||||
|
package-lock.json
|
132
map.html
Normal file
132
map.html
Normal file
|
@ -0,0 +1,132 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>Leaflet - test</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: 500px; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="map"></div><br/>
|
||||||
|
|
||||||
|
<input id="name"/><button id="setName">Set team name</button><br/>
|
||||||
|
<input type="number" name="color" value="0"/><button id="setColor">Set color</button><br/>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var protocol = "http";
|
||||||
|
var server = "localhost";
|
||||||
|
var port = "9000";
|
||||||
|
var socket = io.connect(protocol+"://"+server+":"+port);
|
||||||
|
|
||||||
|
var id = -1;
|
||||||
|
var names = {};
|
||||||
|
var colors = {};
|
||||||
|
var markers = {};
|
||||||
|
var icons = { /* TODO */ };
|
||||||
|
var self_icons = { /* TODO */ };
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
|
// INIT MAP
|
||||||
|
|
||||||
|
var map = L.map('map').setView([48.8448, 2.3550], 13);
|
||||||
|
|
||||||
|
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||||
|
maxZoom: 19,
|
||||||
|
attribution: '© OpenStreetMap'
|
||||||
|
}).addTo(map);
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
|
// UPDATE MAP
|
||||||
|
|
||||||
|
socket.on("yourId", function(data){
|
||||||
|
console.log("yourId", data);
|
||||||
|
id = data.id;
|
||||||
|
if(!(id in colors))
|
||||||
|
colors[id] = 0;
|
||||||
|
if(id in markers)
|
||||||
|
markers[id].setIcon(self_icons[colors[id]]);
|
||||||
|
});
|
||||||
|
|
||||||
|
socket.on("setName", function(data){
|
||||||
|
console.log("setName", data);
|
||||||
|
names[data.id] = data.name;
|
||||||
|
if(data.id in markers)
|
||||||
|
markers[data.id].setIcon(icons[data.color]);
|
||||||
|
});
|
||||||
|
|
||||||
|
socket.on("changeColor", function(data){
|
||||||
|
console.log("changeColor", data);
|
||||||
|
colors[data.id] = data.color;
|
||||||
|
if(data.id in markers){
|
||||||
|
if(data.id == id)
|
||||||
|
markers[data.id].setIcon(self_icons[data.color]);
|
||||||
|
else
|
||||||
|
markers[data.id].setIcon(icons[data.color]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
socket.on("moving", function(data){
|
||||||
|
console.log("moving", data);
|
||||||
|
if(!(data.id in markers)){
|
||||||
|
if(!(data.id in colors))
|
||||||
|
colors[data.id] = 0;
|
||||||
|
var icon;
|
||||||
|
if(data.id == id)
|
||||||
|
icon = self_icons[colors[data.id]];
|
||||||
|
else
|
||||||
|
icon = icons[colors[data.id]];
|
||||||
|
markers[data.id] = L.marker(data.position, {"icon": icon}).addTo(map);
|
||||||
|
} else
|
||||||
|
markers[data.id].setLatLng(position);
|
||||||
|
});
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
|
// SETTINGS -- NAME AND COLOR
|
||||||
|
|
||||||
|
document.querySelector('#setName').addEventListener('click', function(){
|
||||||
|
const input = document.querySelector('#name');
|
||||||
|
|
||||||
|
socket.emit("setName", {"name": input.value});
|
||||||
|
});
|
||||||
|
|
||||||
|
document.querySelector('#setColor').addEventListener('click', function(){
|
||||||
|
const input = document.querySelector('#color');
|
||||||
|
|
||||||
|
socket.emit("setColor", {"color": input.value});
|
||||||
|
});
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
|
// GEOLOCALISATION
|
||||||
|
|
||||||
|
function geoLoc_success(pos) {
|
||||||
|
socket.emit("geoLoc", {"position": pos});
|
||||||
|
}
|
||||||
|
|
||||||
|
function geoLoc_error(err) {
|
||||||
|
console.error(`ERROR(${err.code}): ${err.message}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
options = {
|
||||||
|
enableHighAccuracy: false,
|
||||||
|
timeout: 5000,
|
||||||
|
maximumAge: 0
|
||||||
|
};
|
||||||
|
|
||||||
|
id = navigator.geolocation.watchPosition(geoLoc_success, geoLoc_error, options);
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
8
package.json
Normal file
8
package.json
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"name": "traque",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"description": "appli pour la traque",
|
||||||
|
"dependencies": {
|
||||||
|
"socket.io": "^4.5.2"
|
||||||
|
}
|
||||||
|
}
|
85
traque.js
Normal file
85
traque.js
Normal file
|
@ -0,0 +1,85 @@
|
||||||
|
/* struct equipe
|
||||||
|
{
|
||||||
|
"name" : string,
|
||||||
|
"pos" : [lat : float, long : float],
|
||||||
|
"color" : int,
|
||||||
|
"socket" : socket
|
||||||
|
"shown" : bool
|
||||||
|
}
|
||||||
|
|
||||||
|
Les messages à transmettre par le client :
|
||||||
|
- geoLoc(position)
|
||||||
|
- changeColor(color)
|
||||||
|
- setName(id)
|
||||||
|
Les messages à transmettre par le serveur :
|
||||||
|
- moving(id, position)
|
||||||
|
- changeColor(id, color)
|
||||||
|
- setName(id, name)
|
||||||
|
*/
|
||||||
|
|
||||||
|
var equipes = [];
|
||||||
|
|
||||||
|
// require = include
|
||||||
|
var http = require('http');
|
||||||
|
var url = require('url');
|
||||||
|
var fs = require('fs');
|
||||||
|
|
||||||
|
console.log("Setup http server");
|
||||||
|
|
||||||
|
// The server
|
||||||
|
var server = http.createServer(function(req, res){
|
||||||
|
var q = url.parse(req.url, true);
|
||||||
|
var filename = "." + q.pathname;
|
||||||
|
if(q.pathname == "/")
|
||||||
|
filename = "map.html";
|
||||||
|
fs.readFile(filename, function(err, data) {
|
||||||
|
if (err) {
|
||||||
|
res.writeHead(404, {'Content-Type': 'text/html'});
|
||||||
|
return res.end("404 Not Found");
|
||||||
|
}
|
||||||
|
res.writeHead(200, {'Content-Type': 'text/html'});
|
||||||
|
res.write(data);
|
||||||
|
return res.end();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log("Setup io server");
|
||||||
|
const { Server } = require("socket.io");
|
||||||
|
var io = new Server(server);
|
||||||
|
|
||||||
|
console.log("Setup handlers");
|
||||||
|
io.sockets.on('connection', function(socket){
|
||||||
|
socket.id = equipes.length;
|
||||||
|
equipes.push(socket);
|
||||||
|
socket.shown = false;
|
||||||
|
socket.color = 0;
|
||||||
|
socket.on('geoLoc', function(d){
|
||||||
|
socket.position = d.position;
|
||||||
|
if(socket.shown)
|
||||||
|
for(i in equipes)
|
||||||
|
equipes[i].emit('moving', {"id": socket.id, "position": d.position});
|
||||||
|
});
|
||||||
|
socket.on('changeColor', function(d){
|
||||||
|
socket.color = d.color;
|
||||||
|
if(d.color == -1)
|
||||||
|
socket.shown = false;
|
||||||
|
else{
|
||||||
|
if(!socket.shown)
|
||||||
|
for(i in equipes)
|
||||||
|
equipes[i].emit('moving', {"id": socket.id, "position": socket.position});
|
||||||
|
socket.shown = true;
|
||||||
|
}
|
||||||
|
for(i in equipes)
|
||||||
|
equipes[i].emit('changeColor', {"id": socket.id, "color": d.color});
|
||||||
|
});
|
||||||
|
socket.on('setName', function(d){
|
||||||
|
socket.name = d.name;
|
||||||
|
for(i in equipes)
|
||||||
|
equipes[i].emit('setName', {"id": socket.id, "name": d.name});
|
||||||
|
});
|
||||||
|
socket.emit('yourId', {"id": socket.id});
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log("Launch server");
|
||||||
|
server.listen(9000);
|
||||||
|
console.log("Running!");
|
Loading…
Reference in a new issue