-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.html
240 lines (211 loc) · 11.1 KB
/
map.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Nous chargeons les fichiers CDN de Leaflet. Le CSS AVANT le JS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
<link rel="stylesheet" href="leaflet.toolbar/leaflet.toolbar.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="leaflet-control-window/L.Control.Window.css"/>
<style type="text/css">
i.map-wrapper {
position: relative;
}
#map{ /* la carte DOIT avoir une hauteur sinon elle n'apparaît pas */
//height:400px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.map-wrapper {
position: relative;
}
<div class="map-wrapper">
<div id="map"></div>
</div>
</style>
<title>Carte</title>
<!-- Fichiers Javascript -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<script type="text/javascript" src="FileSaver/FileSaver.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="leaflet.toolbar/leaflet.toolbar.js"></script>
<script src="leaflet-control-window/L.Control.Window.js"></script>
</head>
<body>
<div id="map">
<!-- Ici s'affichera la carte -->
</div>
<script type="text/javascript">
// On initialise la latitude et la longitude de Paris (centre de la carte)
var Paris = [48.852969, 2.349903];
var Moulins = [46.513515, 3.142089];
var centre = Moulins;
var curpos = null;
var macarte = null;
var R = [10000, 30000];
var color = ['green', '#f03', '#30f'];
var mongroupe;
var marker;
var FranceBounds = [[51.071021, 2.561037], [48.420381, -4.766843], [48.966750, 8.233373], [42.335531, 2.541811]];
// Fonction d'initialisation de la carte
function initMap() {
// Créer l'objet "macarte" et l'insèrer dans l'élément HTML qui a l'ID "map"
macarte = L.map('map').setView(centre, 6);
// Leaflet ne récupère pas les cartes (tiles) sur un serveur par défaut. Nous devons lui préciser où nous souhaitons les récupérer. Ici, openstreetmap.fr
L.tileLayer('https://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png', {
// Il est toujours bien de laisser le lien vers la source des données
attribution: 'données © <a href="https://osm.org/copyright">OpenStreetMap</a>/ODbL - rendu <a href="https://openstreetmap.fr">OSM France</a>',
minZoom: 1,
maxZoom: 20
}).addTo(macarte);
// On s'assure que la France est visible dans son intégralité
macarte.fitBounds(L.latLngBounds(FranceBounds));
// Popup d'accueil pour expliquer comment ça marche
var win = L.control.window(macarte,{modal: 'true', title:'<center>Salut Homo Motardus Confinus</center>',content:'<center><div>Cliques sur la carte là où tu habites pour voir tes cercles de libertés !</div></br><div>Puis cliques sur le menu "Export GPX" en haut à</br>gauche pour exporter tes cercles dans un fichier GPX.</div></center>'}).show();
// Toolbar en haut à gauche pour l'export GPS
var SaveToGpxAction = L.Toolbar2.Action.extend({
options: {
toolbarIcon: {
className: 'fa fa-download',
tooltip: 'Export to GPX'
}
},
addHooks: function () {
if (curpos != null) {WriteToFile()};
}
});
new L.Toolbar2.Control({
position: 'topleft',
actions: [SaveToGpxAction]
}).addTo(macarte);
// Que fait on quand on clique sur la carte
macarte.on('click', function(e) {
if (mongroupe != undefined) {
macarte.removeLayer(mongroupe);
delete mongroupe;
}
mongroupe = L.featureGroup();
macarte.addLayer(mongroupe);
curpos = [e.latlng.lat, e.latlng.lng];
R.forEach(function (item, index) {
drawCircle(curpos, item, color[index]).addTo(mongroupe);
});
marker = L.marker(curpos).addTo(macarte);
marker.addTo(mongroupe);
var tooltiptext = e.latlng.lat.toFixed(6)+", "+e.latlng.lng.toFixed(6);
addGeocode(e.latlng.lat, e.latlng.lng, marker, tooltiptext);
marker.bindTooltip(tooltiptext, { permanent: false, offset: [0, 0] });
// Et on zoom pour que le groupe tienne dans la fenêtre
macarte.fitBounds(mongroupe.getBounds());
});
} // end initMap
function addGeocode(lat, lng, marker, tooltiptext) {
var city = '';
$.get('https://nominatim.openstreetmap.org/reverse?format=jsonv2&lat='+lat+'&lon='+lng,
function(data){
//console.log(data.address);
if (typeof data.address.town != 'undefined') {
city = data.address.town;
} else if (typeof data.address.village != 'undefined') {
city = data.address.village;
} else if (typeof data.address.city != 'undefined') {
city = data.address.city;
} else if (typeof data.address.municipality != 'undefined') {
city = data.address.municipality;
}
if (city != '') {
tooltiptext = '<center>' + city + '</center>' + tooltiptext;
marker.setTooltipContent(tooltiptext);
}
});
}
function WriteToFile() {
var gpxstring;
gpxstring = '<?xml version=\'1.0\' encoding=\'UTF-8\' standalone=\'yes\' ?>\n';
gpxstring += '<gpx version=\"1.1\" creator=\"Olivier\" xmlns=\"http://www.topografix.com/GPX/1/1\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd\">\n';
gpxstring += ' <metadata>\n';
gpxstring += ' <name>cercle ' + curpos[0].toFixed(6) + ',' + curpos[1].toFixed(6) + ' ';
R.forEach(function(item, index) {
if (index == 0) {
gpxstring += item/1000 + 'km';
} else {
gpxstring += ' + ' + item/1000 + 'km';
}
});
gpxstring += '</name>\n';
gpxstring += ' </metadata>\n';
gpxstring += ' <wpt lat=\"' + curpos[0].toFixed(6) + '\" lon=\"' + curpos[1].toFixed(6) + '\">\n';
gpxstring += ' <name>Center</name>\n';
gpxstring += ' </wpt>\n';
R.forEach(function(item, index) {
gpxstring += ' <trk>\n';
gpxstring += ' <name>cercle ' + curpos[0].toFixed(6) + ',' + curpos[1].toFixed(6) + ' ' + item/1000 + 'km</name>\n';
gpxstring += ' <trkseg>\n';
var gpx = calcule_cercle(curpos, item, 720); // 720 points -> pas de 0.5°
gpx.forEach(function (item, index) {
gpxstring += ' <trkpt lat=\"' + item[0] + '\" lon=\"' + item[1] + '\"></trkpt>\n';
});
gpxstring += ' </trkseg>\n';
gpxstring += ' </trk>\n';
});
gpxstring += '</gpx>\n';
var blob = new Blob([gpxstring], {type: "text/plain;charset=utf-8"});
var filename = 'cercle_' + curpos[0].toFixed(6) + '_' + curpos[1].toFixed(6);
R.forEach(function(item, index) {
filename += '_' + item/1000 + 'km';
});
filename += '.gpx'
saveAs(blob, filename);
marker.closePopup();
delete blob, gpxstring;
}
// Calcul des coordonnées GPS d'un cercle de rayon d centré sur pos
function calcule_cercle(pos, d, nbpoints) {
var R = 6371000; //rayon terrestre moyen en mètre
var Center_Latitude = Math.PI*pos[0]/180.0; // degree to radian
var Center_Longitude = Math.PI*pos[1]/180.0; // degree to radian
var cercle = [];
var factor;
var increment;
if (nbpoints <= 360) {
factor = 1;
increment = 360/nbpoints;
} else {
factor = nbpoints/360;
increment = 1;
}
for (i=0; i<factor*360; i+=increment) {
var brng = Math.PI*i/factor/180.0;
var PointCercle_Latitude = Math.asin(Math.sin(Center_Latitude)*Math.cos(d/R) + Math.cos(Center_Latitude)*Math.sin(d/R)*Math.cos(brng));
var PointCercle_Longitude = Center_Longitude + Math.atan2(Math.sin(brng)*Math.sin(d/R)*Math.cos(Center_Latitude), Math.cos(d/R)-Math.sin(Center_Latitude)*Math.sin(PointCercle_Latitude));
PointCercle_Latitude = 180.0*PointCercle_Latitude/Math.PI; // radian to degree
PointCercle_Longitude = 180.0*PointCercle_Longitude/Math.PI; //radian to degree
cercle.push([PointCercle_Latitude.toFixed(6), PointCercle_Longitude.toFixed(6)]);
}
//var polygon = L.polygon(cercle).addTo(macarte);
return cercle;
}
// Dessine un cercle sur la carte
function drawCircle(pos, rad, colour) {
var circle = L.circle(pos, {
color: colour,
fillColor: colour,
fillOpacity: 0.2,
radius: rad
}).addTo(macarte);
return circle
}
window.onload = function(){
// Fonction d'initialisation qui s'exécute lorsque le DOM est chargé
initMap();
};
</script>
</body>
</html>