1054 |
jpm |
1 |
//+---------------------------------------------------------------------------------------------------------+
|
1916 |
jpm |
2 |
// GÉNÉRAL => OK
|
|
|
3 |
$(document).ready(function() {
|
|
|
4 |
if (DEBUG == false) {
|
|
|
5 |
$(window).on('beforeunload', function(event) {
|
|
|
6 |
return 'Êtes vous sûr de vouloir quiter la page?\nLes observations saisies mais non transmises seront perdues.';
|
|
|
7 |
});
|
|
|
8 |
}
|
|
|
9 |
});
|
|
|
10 |
//+----------------------------------------------------------------------------------------------------------+
|
|
|
11 |
// FONCTIONS GÉNÉRIQUES => OK
|
1054 |
jpm |
12 |
/**
|
|
|
13 |
* Stope l'évènement courrant quand on clique sur un lien.
|
|
|
14 |
* Utile pour Chrome, Safari...
|
|
|
15 |
* @param evenement
|
|
|
16 |
* @return
|
|
|
17 |
*/
|
|
|
18 |
function arreter(evenement) {
|
|
|
19 |
if (evenement.stopPropagation) {
|
|
|
20 |
evenement.stopPropagation();
|
|
|
21 |
}
|
1916 |
jpm |
22 |
if (evenement.preventDefault) {
|
|
|
23 |
evenement.preventDefault();
|
|
|
24 |
}
|
1054 |
jpm |
25 |
return false;
|
|
|
26 |
}
|
1346 |
aurelien |
27 |
|
1916 |
jpm |
28 |
function extraireEnteteDebug(jqXHR) {
|
|
|
29 |
var msgDebug = '';
|
|
|
30 |
if (jqXHR.getResponseHeader('X-DebugJrest-Data') != '') {
|
|
|
31 |
var debugInfos = jQuery.parseJSON(jqXHR.getResponseHeader('X-DebugJrest-Data'));
|
|
|
32 |
if (debugInfos != null) {
|
|
|
33 |
$.each(debugInfos, function (cle, valeur) {
|
|
|
34 |
msgDebug += valeur + "\n";
|
|
|
35 |
});
|
|
|
36 |
}
|
1578 |
jpm |
37 |
}
|
1916 |
jpm |
38 |
return msgDebug;
|
|
|
39 |
}
|
1054 |
jpm |
40 |
|
1916 |
jpm |
41 |
function afficherPanneau(selecteur) {
|
|
|
42 |
$(selecteur).fadeIn('slow').delay(DUREE_MESSAGE).fadeOut('slow');
|
|
|
43 |
}
|
|
|
44 |
|
1054 |
jpm |
45 |
//+----------------------------------------------------------------------------------------------------------+
|
1916 |
jpm |
46 |
//FORM IDENTITE : gestion de l'observateur => OK
|
|
|
47 |
|
|
|
48 |
$(document).ready(function() {
|
1946 |
jpm |
49 |
requeterIdentite();// Sur rechargement de la page
|
|
|
50 |
|
|
|
51 |
// Interaction sur le formulaire observateur
|
|
|
52 |
$('#prenom').on('change', formaterPrenom);
|
|
|
53 |
$('#nom').on('change', formaterNom);
|
1963 |
jpm |
54 |
$('#courriel').on('keyup', testerLancementRequeteIdentite);
|
|
|
55 |
$('#courriel').on('blur', requeterIdentite);
|
1946 |
jpm |
56 |
$('#courriel_confirmation').on('paste', bloquerCopierCollerCourriel);
|
1916 |
jpm |
57 |
});
|
|
|
58 |
|
|
|
59 |
function testerLancementRequeteIdentite(event) {
|
|
|
60 |
if (event.which == 13) {
|
|
|
61 |
event.preventDefault();
|
|
|
62 |
event.stopPropagation();
|
1962 |
jpm |
63 |
requeterIdentite();
|
1916 |
jpm |
64 |
}
|
|
|
65 |
}
|
|
|
66 |
|
|
|
67 |
function requeterIdentite() {
|
|
|
68 |
var courriel = $('#courriel').val();
|
1946 |
jpm |
69 |
if (courriel) {
|
|
|
70 |
var urlAnnuaire = SERVICE_ANNUAIRE_ID_URL + courriel;
|
|
|
71 |
$.ajax({
|
|
|
72 |
url: urlAnnuaire,
|
|
|
73 |
type: 'GET',
|
|
|
74 |
success: function(data, textStatus, jqXHR) {
|
|
|
75 |
if (data != undefined && data[courriel] != undefined) {
|
|
|
76 |
var infos = data[courriel];
|
|
|
77 |
$('#id_utilisateur').val(infos.id);
|
|
|
78 |
$('#prenom').val(infos.prenom);
|
|
|
79 |
$('#nom').val(infos.nom);
|
|
|
80 |
$('#courriel_confirmation').val(courriel);
|
|
|
81 |
$('#prenom, #nom, #courriel_confirmation').attr('disabled', 'disabled');
|
|
|
82 |
$('#structure').focus();
|
|
|
83 |
} else {
|
|
|
84 |
surErreurCompletionCourriel();
|
|
|
85 |
}
|
|
|
86 |
},
|
|
|
87 |
error: function(jqXHR, textStatus, errorThrown) {
|
1916 |
jpm |
88 |
surErreurCompletionCourriel();
|
1946 |
jpm |
89 |
},
|
|
|
90 |
complete: function(jqXHR, textStatus) {
|
1956 |
jpm |
91 |
montrerFormIdentite();
|
1916 |
jpm |
92 |
}
|
|
|
93 |
});
|
1946 |
jpm |
94 |
}
|
1916 |
jpm |
95 |
}
|
|
|
96 |
|
1956 |
jpm |
97 |
function montrerFormIdentite() {
|
|
|
98 |
$('#zone-courriel-confirmation, #zone-prenom-nom').removeClass('hidden');
|
|
|
99 |
}
|
|
|
100 |
|
1916 |
jpm |
101 |
function surErreurCompletionCourriel() {
|
|
|
102 |
$('#prenom, #nom, #courriel_confirmation').removeAttr('disabled');
|
|
|
103 |
afficherPanneau('#dialogue-courriel-introuvable');
|
|
|
104 |
}
|
|
|
105 |
|
|
|
106 |
function formaterNom() {
|
|
|
107 |
$(this).val($(this).val().toUpperCase());
|
|
|
108 |
}
|
|
|
109 |
|
|
|
110 |
function formaterPrenom() {
|
|
|
111 |
var prenom = new Array(),
|
|
|
112 |
mots = $(this).val().split(' ');
|
|
|
113 |
for (var i = 0; i < mots.length; i++) {
|
|
|
114 |
var mot = mots[i];
|
|
|
115 |
if (mot.indexOf('-') >= 0) {
|
|
|
116 |
var prenomCompose = new Array(),
|
|
|
117 |
motsComposes = mot.split('-');
|
|
|
118 |
for (var j = 0; j < motsComposes.length; j++) {
|
|
|
119 |
var motSimple = motsComposes[j],
|
|
|
120 |
motMajuscule = motSimple.charAt(0).toUpperCase() + motSimple.slice(1);
|
|
|
121 |
prenomCompose.push(motMajuscule);
|
|
|
122 |
}
|
|
|
123 |
prenom.push(prenomCompose.join('-'));
|
|
|
124 |
} else {
|
|
|
125 |
var motMajuscule = mot.charAt(0).toUpperCase() + mot.slice(1);
|
|
|
126 |
prenom.push(motMajuscule);
|
|
|
127 |
}
|
|
|
128 |
}
|
|
|
129 |
$(this).val(prenom.join(' '));
|
|
|
130 |
}
|
|
|
131 |
|
1946 |
jpm |
132 |
function bloquerCopierCollerCourriel() {
|
|
|
133 |
afficherPanneau('#dialogue-bloquer-copier-coller');
|
|
|
134 |
return false;
|
|
|
135 |
}
|
|
|
136 |
|
1916 |
jpm |
137 |
//+----------------------------------------------------------------------------------------------------------+
|
1922 |
jpm |
138 |
//GOOGLE MAP => OK
|
1054 |
jpm |
139 |
|
1922 |
jpm |
140 |
var map,
|
|
|
141 |
geocoder,
|
|
|
142 |
markerDeb,
|
|
|
143 |
latLngDeb,
|
|
|
144 |
markerFin,
|
|
|
145 |
latLngFin,
|
|
|
146 |
ligneRue,
|
|
|
147 |
premierDeplacement = true;
|
1346 |
aurelien |
148 |
|
1922 |
jpm |
149 |
$(document).ready(function() {
|
|
|
150 |
initialiserGoogleMap();
|
|
|
151 |
afficherEtapeGeolocalisation(1);
|
1346 |
aurelien |
152 |
|
1922 |
jpm |
153 |
// Autocompletion du champ adresse
|
|
|
154 |
$('#carte-recherche').on('focus', function() {
|
|
|
155 |
$(this).select();
|
1346 |
aurelien |
156 |
});
|
1922 |
jpm |
157 |
$('#carte-recherche').on('mouseup', function(event) {// Pour Safari...
|
|
|
158 |
event.preventDefault();
|
|
|
159 |
});
|
1054 |
jpm |
160 |
|
1922 |
jpm |
161 |
$('#carte-recherche').keypress(function(e) {
|
|
|
162 |
if (e.which == 13) {
|
|
|
163 |
e.preventDefault();
|
|
|
164 |
}
|
1054 |
jpm |
165 |
});
|
1346 |
aurelien |
166 |
|
1922 |
jpm |
167 |
$('#carte-recherche').autocomplete({
|
1346 |
aurelien |
168 |
//Cette partie utilise geocoder pour extraire des valeurs d'adresse
|
|
|
169 |
source: function(request, response) {
|
1922 |
jpm |
170 |
|
1346 |
aurelien |
171 |
geocoder.geocode( {'address': request.term+', France', 'region' : 'fr' }, function(results, status) {
|
|
|
172 |
if (status == google.maps.GeocoderStatus.OK) {
|
1054 |
jpm |
173 |
response($.map(results, function(item) {
|
1956 |
jpm |
174 |
var rue = "";
|
|
|
175 |
$.each(item.address_components, function(){
|
|
|
176 |
if (this.types[0] == "route" || this.types[0] == "street_address" ) {
|
|
|
177 |
rue = this.short_name;
|
|
|
178 |
}
|
|
|
179 |
});
|
1346 |
aurelien |
180 |
var retour = {
|
|
|
181 |
label: item.formatted_address,
|
1956 |
jpm |
182 |
value: rue,
|
1054 |
jpm |
183 |
latitude: item.geometry.location.lat(),
|
|
|
184 |
longitude: item.geometry.location.lng()
|
1346 |
aurelien |
185 |
};
|
|
|
186 |
return retour;
|
1054 |
jpm |
187 |
}));
|
1346 |
aurelien |
188 |
} else {
|
|
|
189 |
afficherErreurGoogleMap(status);
|
1054 |
jpm |
190 |
}
|
|
|
191 |
});
|
1346 |
aurelien |
192 |
},
|
|
|
193 |
// Cette partie est executee a la selection d'une adresse
|
|
|
194 |
select: function(event, ui) {
|
1922 |
jpm |
195 |
var nouvellePosition = new google.maps.LatLng(ui.item.latitude, ui.item.longitude);
|
|
|
196 |
initialiserMarkerDeb();
|
|
|
197 |
deplacerMarkerDeb(nouvellePosition);
|
|
|
198 |
map.setZoom(16);
|
1346 |
aurelien |
199 |
afficherEtapeGeolocalisation(2);
|
|
|
200 |
}
|
1054 |
jpm |
201 |
});
|
1346 |
aurelien |
202 |
|
1922 |
jpm |
203 |
$('#geolocaliser').on('click', geolocaliser);
|
|
|
204 |
});
|
|
|
205 |
|
|
|
206 |
function initialiserGoogleMap(){
|
1946 |
jpm |
207 |
latLngDeb = new google.maps.LatLng(48.8543, 2.3483);// Paris
|
|
|
208 |
if (VILLE == 'Marseille') {
|
|
|
209 |
latLngDeb = new google.maps.LatLng(43.29545, 5.37458);
|
|
|
210 |
} else if (VILLE == 'Montpellier') {
|
|
|
211 |
latLngDeb = new google.maps.LatLng(43.61077, 3.87672);
|
|
|
212 |
}
|
1922 |
jpm |
213 |
var options = {
|
1946 |
jpm |
214 |
zoom: 16,
|
1922 |
jpm |
215 |
center: latLngDeb,
|
|
|
216 |
mapTypeId: google.maps.MapTypeId.HYBRID,
|
|
|
217 |
mapTypeControlOptions: {
|
|
|
218 |
mapTypeIds: ['OSM',
|
|
|
219 |
google.maps.MapTypeId.ROADMAP,
|
|
|
220 |
google.maps.MapTypeId.HYBRID,
|
|
|
221 |
google.maps.MapTypeId.SATELLITE,
|
|
|
222 |
google.maps.MapTypeId.TERRAIN]}
|
|
|
223 |
};
|
|
|
224 |
|
|
|
225 |
// Ajout de la couche OSM à la carte
|
|
|
226 |
osmMapType = new google.maps.ImageMapType({
|
|
|
227 |
getTileUrl: function(coord, zoom) {
|
|
|
228 |
return 'http://tile.openstreetmap.org/' + zoom + '/' + coord.x + '/' + coord.y + '.png';
|
|
|
229 |
},
|
|
|
230 |
tileSize: new google.maps.Size(256, 256),
|
|
|
231 |
isPng: true,
|
|
|
232 |
alt: 'OpenStreetMap',
|
|
|
233 |
name: 'OSM',
|
|
|
234 |
maxZoom: 19
|
1346 |
aurelien |
235 |
});
|
|
|
236 |
|
1922 |
jpm |
237 |
// Création de la carte Google
|
|
|
238 |
map = new google.maps.Map(document.getElementById('map-canvas'), options); //affiche la google map dans la div map_canvas
|
|
|
239 |
map.mapTypes.set('OSM', osmMapType);
|
|
|
240 |
|
|
|
241 |
// Ajout de l'évènment sur click dans Carte
|
|
|
242 |
google.maps.event.addListener(map, 'click', surClickDansCarte);
|
|
|
243 |
|
|
|
244 |
// Lorsque la carte est chargée, on vérifie si on peut précharger des données
|
|
|
245 |
google.maps.event.addListenerOnce(map, 'idle', function(){
|
|
|
246 |
// Initialisation du marker de début de rue
|
|
|
247 |
initialiserMarkerDeb();
|
|
|
248 |
// Tentative de geocalisation si aucune obs à précharger
|
|
|
249 |
tenterGeolocalisation();
|
1346 |
aurelien |
250 |
});
|
|
|
251 |
|
1922 |
jpm |
252 |
// Création du Geocoder
|
|
|
253 |
geocoder = new google.maps.Geocoder();
|
|
|
254 |
}
|
1054 |
jpm |
255 |
|
1922 |
jpm |
256 |
function initialiserMarkerDeb() {
|
|
|
257 |
premierDeplacement = true;
|
|
|
258 |
if (markerDeb == undefined) {
|
|
|
259 |
// Marqueur de début de Rue
|
|
|
260 |
markerDeb = new google.maps.Marker({
|
|
|
261 |
map: map,
|
|
|
262 |
draggable: true,
|
|
|
263 |
title: 'Début de la portion de rue étudiée',
|
|
|
264 |
icon: GOOGLE_MAP_MARQUEUR_DEBUT_URL,
|
|
|
265 |
position: latLngDeb
|
|
|
266 |
});
|
|
|
267 |
google.maps.event.addListener(markerDeb, 'dragend', surDeplacementMarkerDeb);
|
|
|
268 |
}
|
|
|
269 |
|
|
|
270 |
latLngFin = latLngDeb;
|
|
|
271 |
if (markerFin != undefined) {
|
|
|
272 |
markerFin.setMap(null);
|
|
|
273 |
}
|
|
|
274 |
latLngCentre = latLngDeb;
|
|
|
275 |
if (ligneRue != undefined) {
|
|
|
276 |
ligneRue.setMap(null);
|
|
|
277 |
}
|
1346 |
aurelien |
278 |
}
|
|
|
279 |
|
1922 |
jpm |
280 |
function surDeplacementMarkerDeb() {
|
|
|
281 |
deplacerMarkerDeb(markerDeb.getPosition());
|
1346 |
aurelien |
282 |
}
|
|
|
283 |
|
1922 |
jpm |
284 |
function deplacerMarkerDeb(nouvellePosition) {
|
|
|
285 |
latLngDeb = nouvellePosition;
|
|
|
286 |
markerDeb.setPosition(latLngDeb);
|
|
|
287 |
map.setCenter(latLngDeb);
|
|
|
288 |
mettreAJourStationPosition(latLngDeb);
|
|
|
289 |
trouverCommune(latLngDeb);
|
|
|
290 |
|
|
|
291 |
if (premierDeplacement) {
|
|
|
292 |
initialiserMarkerDeb();
|
|
|
293 |
premierDeplacement = false;
|
|
|
294 |
} else {
|
|
|
295 |
var nouvellePositionFin = new google.maps.LatLng(latLngDeb.lat(), latLngDeb.lng() + 0.0010);
|
|
|
296 |
initialiserMarkerFin();
|
|
|
297 |
deplacerMakerFin(nouvellePositionFin)
|
|
|
298 |
afficherEtapeGeolocalisation(3);
|
1346 |
aurelien |
299 |
}
|
|
|
300 |
}
|
|
|
301 |
|
1922 |
jpm |
302 |
function initialiserMarkerFin() {
|
|
|
303 |
if (markerFin == undefined) {
|
|
|
304 |
markerFin = new google.maps.Marker({
|
|
|
305 |
map: map,
|
|
|
306 |
draggable: true,
|
|
|
307 |
title: 'Fin de la portion de rue étudiée',
|
|
|
308 |
icon: GOOGLE_MAP_MARQUEUR_FIN_URL,
|
|
|
309 |
position: latLngFin
|
|
|
310 |
});
|
|
|
311 |
google.maps.event.addListener(markerFin, 'dragend', surDeplacementMarkerFin);
|
|
|
312 |
} else {
|
|
|
313 |
markerFin.setMap(null);
|
1346 |
aurelien |
314 |
}
|
|
|
315 |
}
|
|
|
316 |
|
1922 |
jpm |
317 |
function deplacerMakerFin(nouvellePosition) {
|
|
|
318 |
latLngFin = nouvellePosition;
|
|
|
319 |
markerFin.setMap(map);
|
|
|
320 |
markerFin.setPosition(latLngFin);
|
|
|
321 |
dessinerLigneRue(latLngDeb, latLngFin);
|
|
|
322 |
}
|
|
|
323 |
|
|
|
324 |
function surDeplacementMarkerFin() {
|
|
|
325 |
dessinerLigneRue(markerDeb.getPosition(), markerFin.getPosition());
|
|
|
326 |
afficherCentreRue();
|
|
|
327 |
afficherEtapeGeolocalisation(4);
|
|
|
328 |
}
|
|
|
329 |
|
1346 |
aurelien |
330 |
function dessinerLigneRue(pointDebut, pointFin) {
|
1922 |
jpm |
331 |
if (ligneRue != undefined) {
|
1346 |
aurelien |
332 |
ligneRue.setMap(null);
|
|
|
333 |
}
|
|
|
334 |
|
|
|
335 |
ligneRue = new google.maps.Polyline({
|
1922 |
jpm |
336 |
path: [pointDebut, pointFin],
|
|
|
337 |
strokeColor: "#FF0000",
|
|
|
338 |
strokeOpacity: 1.0,
|
|
|
339 |
strokeWeight: 2
|
|
|
340 |
});
|
1346 |
aurelien |
341 |
|
|
|
342 |
ligneRue.setMap(map);
|
|
|
343 |
}
|
|
|
344 |
|
1922 |
jpm |
345 |
function afficherCentreRue() {
|
|
|
346 |
latLngDeb = markerDeb.getPosition();
|
|
|
347 |
latLngFin = markerFin.getPosition();
|
|
|
348 |
latLngCentre = new google.maps.LatLng((latLngFin.lat() + latLngDeb.lat())/2, (latLngFin.lng() + latLngDeb.lng())/2);
|
|
|
349 |
mettreAJourStationPosition(latLngCentre);
|
|
|
350 |
}
|
|
|
351 |
|
|
|
352 |
function mettreAJourStationPosition(latLng) {
|
|
|
353 |
var lat = latLng.lat().toFixed(5),
|
|
|
354 |
lng = latLng.lng().toFixed(5);
|
1346 |
aurelien |
355 |
remplirChampLatitude(lat);
|
|
|
356 |
remplirChampLongitude(lng);
|
|
|
357 |
}
|
|
|
358 |
|
|
|
359 |
function remplirChampLatitude(latDecimale) {
|
1922 |
jpm |
360 |
var lat = Math.round(latDecimale * 100000) / 100000;
|
1346 |
aurelien |
361 |
$('#latitude').val(lat);
|
|
|
362 |
}
|
|
|
363 |
|
|
|
364 |
function remplirChampLongitude(lngDecimale) {
|
1922 |
jpm |
365 |
var lng = Math.round(lngDecimale * 100000) / 100000;
|
1346 |
aurelien |
366 |
$('#longitude').val(lng);
|
|
|
367 |
}
|
|
|
368 |
|
|
|
369 |
function trouverCommune(pos) {
|
|
|
370 |
$(function() {
|
1922 |
jpm |
371 |
var url_service = SERVICE_NOM_COMMUNE_URL,
|
|
|
372 |
urlNomCommuneFormatee = url_service.replace('{lat}', pos.lat()).replace('{lon}', pos.lng());
|
1346 |
aurelien |
373 |
$.ajax({
|
1922 |
jpm |
374 |
url: urlNomCommuneFormatee,
|
|
|
375 |
type: 'GET',
|
|
|
376 |
dataType: 'jsonp',
|
|
|
377 |
beforeSend: function() {
|
|
|
378 |
$('.commune-info').empty();
|
|
|
379 |
$('#dialogue-erreur .alert-txt').empty();
|
1346 |
aurelien |
380 |
},
|
1922 |
jpm |
381 |
success: function(data, textStatus, jqXHR) {
|
|
|
382 |
$('.commune-info').empty();
|
|
|
383 |
$('#commune-nom').append(data.nom);
|
|
|
384 |
$('#commune-code-insee').append(data.codeINSEE);
|
|
|
385 |
$('#marqueur-commune').data('commune', {'nom' : data.nom, 'codeInsee' : data.codeINSEE});
|
1346 |
aurelien |
386 |
},
|
1922 |
jpm |
387 |
statusCode: {
|
|
|
388 |
500: function(jqXHR, textStatus, errorThrown) {
|
1346 |
aurelien |
389 |
if (DEBUG) {
|
1922 |
jpm |
390 |
$('#dialogue-erreur .alert-txt').append('<p id="msg">Un problème est survenu lors de l\'appel au service fournissante le nom des communes.</p>');
|
1346 |
aurelien |
391 |
reponse = jQuery.parseJSON(jqXHR.responseText);
|
|
|
392 |
var erreurMsg = "";
|
|
|
393 |
if (reponse != null) {
|
|
|
394 |
$.each(reponse, function (cle, valeur) {
|
1922 |
jpm |
395 |
erreurMsg += valeur + '<br />';
|
1346 |
aurelien |
396 |
});
|
|
|
397 |
}
|
|
|
398 |
|
1922 |
jpm |
399 |
$('#dialogue-erreur .alert-txt').append(
|
|
|
400 |
'<p class="msg-erreur">Erreur 500 : '+errorThrown+'<br />'+erreurMsg+'</p>');
|
1346 |
aurelien |
401 |
}
|
1922 |
jpm |
402 |
}
|
1346 |
aurelien |
403 |
},
|
1922 |
jpm |
404 |
error: function(jqXHR, textStatus, errorThrown) {
|
1346 |
aurelien |
405 |
if (DEBUG) {
|
1922 |
jpm |
406 |
$('#dialogue-erreur .alert-txt').append(
|
|
|
407 |
'<p class="msg">Une erreur Ajax est survenue lors de la transmission de vos observations.</p>');
|
1346 |
aurelien |
408 |
reponse = jQuery.parseJSON(jqXHR.responseText);
|
1922 |
jpm |
409 |
var erreurMsg = '';
|
1346 |
aurelien |
410 |
if (reponse != null) {
|
|
|
411 |
$.each(reponse, function (cle, valeur) {
|
1922 |
jpm |
412 |
erreurMsg += valeur + '<br />';
|
1346 |
aurelien |
413 |
});
|
|
|
414 |
}
|
|
|
415 |
|
1922 |
jpm |
416 |
$('#dialogue-erreur .alert-txt').append(
|
|
|
417 |
'<p class="msg-erreur">Erreur Ajax : '+errorThrown+' (type : '+textStatus+') <br />'+erreurMsg+'</p>');
|
1346 |
aurelien |
418 |
}
|
|
|
419 |
},
|
1922 |
jpm |
420 |
complete: function(jqXHR, textStatus) {
|
|
|
421 |
var debugMsg = extraireEnteteDebug(jqXHR);
|
|
|
422 |
if (debugMsg != '') {
|
|
|
423 |
if (DEBUG) {
|
|
|
424 |
$("#dialogue-erreur .alert-txt").append('<pre class="msg-debug msg">Débogage : '+debugMsg+'</pre>');
|
1346 |
aurelien |
425 |
}
|
|
|
426 |
}
|
|
|
427 |
if ($("#dialogue-erreur .msg").length > 0) {
|
1922 |
jpm |
428 |
$("#dialogue-erreur").show();
|
1346 |
aurelien |
429 |
}
|
|
|
430 |
}
|
|
|
431 |
});
|
1054 |
jpm |
432 |
});
|
|
|
433 |
}
|
|
|
434 |
|
1922 |
jpm |
435 |
function afficherEtapeGeolocalisation(numEtape) {
|
|
|
436 |
$('.liste_indication_geolocalisation').children().hide();
|
|
|
437 |
$('.liste_indication_geolocalisation :nth-child('+numEtape+')').show();
|
|
|
438 |
}
|
|
|
439 |
|
|
|
440 |
function afficherErreurGoogleMap(status) {
|
|
|
441 |
if (DEBUG) {
|
|
|
442 |
$('#dialogue-google-map .contenu').empty().append(
|
|
|
443 |
'<pre class="msg-erreur">'+
|
|
|
444 |
"Le service de Géocodage de Google Map a échoué à cause de l'erreur : "+status+
|
|
|
445 |
'</pre>');
|
|
|
446 |
afficherPanneau('#dialogue-google-map');
|
|
|
447 |
}
|
|
|
448 |
}
|
|
|
449 |
|
|
|
450 |
function geolocaliser(event) {
|
|
|
451 |
var latitude = $('#latitude').val(),
|
|
|
452 |
longitude = $('#longitude').val(),
|
|
|
453 |
nouvellePosition = new google.maps.LatLng(latitude, longitude);
|
|
|
454 |
initialiserMarkerDeb();
|
|
|
455 |
deplacerMarkerDeb(nouvellePosition);
|
|
|
456 |
afficherEtapeGeolocalisation(2);
|
|
|
457 |
map.setZoom(16);
|
|
|
458 |
arreter(event);
|
|
|
459 |
}
|
|
|
460 |
|
|
|
461 |
function tenterGeolocalisation() {
|
|
|
462 |
if (navigator.geolocation) {
|
|
|
463 |
navigator.geolocation.getCurrentPosition(function(position) {
|
|
|
464 |
var latitude = position.coords.latitude,
|
|
|
465 |
longitude = position.coords.longitude,
|
|
|
466 |
nouvellePosition = new google.maps.LatLng(latitude, longitude);
|
|
|
467 |
initialiserMarkerDeb();
|
|
|
468 |
deplacerMarkerDeb(nouvellePosition);
|
|
|
469 |
map.setZoom(16);
|
|
|
470 |
});
|
|
|
471 |
}
|
|
|
472 |
}
|
|
|
473 |
|
|
|
474 |
function surClickDansCarte(event) {
|
|
|
475 |
deplacerMarkerDeb(event.latLng);
|
|
|
476 |
}
|
|
|
477 |
|
|
|
478 |
|
1054 |
jpm |
479 |
//+---------------------------------------------------------------------------------------------------------+
|
1922 |
jpm |
480 |
//AUTO-COMPLÉTION Noms Scientifiques => OK
|
|
|
481 |
|
|
|
482 |
function ajouterAutocompletionNoms() {
|
|
|
483 |
$('#taxon').autocomplete({
|
|
|
484 |
source: function(requete, add){
|
|
|
485 |
// la variable de requête doit être vidée car sinon le parametre "term" est ajouté
|
|
|
486 |
|
|
|
487 |
var url = getUrlAutocompletionNomsSci();
|
|
|
488 |
$.getJSON(url, function(data) {
|
|
|
489 |
var suggestions = traiterRetourNomsSci(data);
|
|
|
490 |
add(suggestions);
|
|
|
491 |
});
|
|
|
492 |
},
|
|
|
493 |
html: true
|
|
|
494 |
});
|
|
|
495 |
|
|
|
496 |
$('#taxon').bind('autocompleteselect', function(event, ui) {
|
|
|
497 |
$('#taxon').data(ui.item);
|
|
|
498 |
if (ui.item.retenu == true) {
|
|
|
499 |
$('#taxon').addClass('ns-retenu');
|
|
|
500 |
} else {
|
|
|
501 |
$('#taxon').removeClass('ns-retenu');
|
|
|
502 |
}
|
|
|
503 |
});
|
|
|
504 |
}
|
|
|
505 |
|
|
|
506 |
function getUrlAutocompletionNomsSci() {
|
|
|
507 |
var mots = $('#taxon').val(),
|
|
|
508 |
url = SERVICE_AUTOCOMPLETION_NOM_SCI_URL_TPL.replace('{referentiel}',NOM_SCI_PROJET);
|
|
|
509 |
url = url.replace('{masque}', mots);
|
|
|
510 |
return url;
|
|
|
511 |
}
|
|
|
512 |
|
|
|
513 |
function traiterRetourNomsSci(data) {
|
|
|
514 |
var suggestions = [];
|
|
|
515 |
if (data.resultat != undefined) {
|
|
|
516 |
$.each(data.resultat, function(i, val) {
|
|
|
517 |
val.nn = i;
|
|
|
518 |
var nom = {label: '', value: '', nt: '', nomSel: '', nomSelComplet: '', numNomSel: '',
|
|
|
519 |
nomRet: '', numNomRet: '', famille: '', retenu: false
|
|
|
520 |
};
|
|
|
521 |
if (suggestions.length >= AUTOCOMPLETION_ELEMENTS_NBRE) {
|
|
|
522 |
nom.label = '...';
|
|
|
523 |
nom.value = $('#taxon').val();
|
|
|
524 |
suggestions.push(nom);
|
|
|
525 |
return false;
|
|
|
526 |
} else {
|
|
|
527 |
nom.label = val.nom_sci_complet;
|
|
|
528 |
nom.value = val.nom_sci_complet;
|
|
|
529 |
nom.nt = val.num_taxonomique;
|
|
|
530 |
nom.nomSel = val.nom_sci;
|
|
|
531 |
nom.nomSelComplet = val.nom_sci_complet;
|
|
|
532 |
nom.numNomSel = val.nn;
|
|
|
533 |
nom.nomRet = val.nom_retenu_complet;
|
|
|
534 |
nom.numNomRet = val['nom_retenu.id'];
|
|
|
535 |
nom.famille = val.famille;
|
|
|
536 |
nom.retenu = (val.retenu == 'false') ? false : true;
|
|
|
537 |
|
|
|
538 |
suggestions.push(nom);
|
|
|
539 |
}
|
|
|
540 |
});
|
|
|
541 |
}
|
|
|
542 |
return suggestions;
|
|
|
543 |
}
|
|
|
544 |
|
|
|
545 |
/*
|
|
|
546 |
* jQuery UI Autocomplete HTML Extension
|
|
|
547 |
*
|
|
|
548 |
* Copyright 2010, Scott González (http://scottgonzalez.com)
|
|
|
549 |
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
|
550 |
*
|
|
|
551 |
* http://github.com/scottgonzalez/jquery-ui-extensions
|
|
|
552 |
*
|
|
|
553 |
* Adaptation par Aurélien Peronnet pour la mise en gras des noms de taxons valides
|
|
|
554 |
*/
|
|
|
555 |
(function($) {
|
|
|
556 |
var proto = $.ui.autocomplete.prototype,
|
|
|
557 |
initSource = proto._initSource;
|
|
|
558 |
|
|
|
559 |
function filter(array, term) {
|
|
|
560 |
var matcher = new RegExp($.ui.autocomplete.escapeRegex(term), 'i');
|
|
|
561 |
return $.grep(array, function(value) {
|
|
|
562 |
return matcher.test($('<div>').html(value.label || value.value || value).text());
|
|
|
563 |
});
|
|
|
564 |
}
|
|
|
565 |
|
|
|
566 |
$.extend(proto, {
|
|
|
567 |
_initSource: function() {
|
|
|
568 |
if (this.options.html && $.isArray(this.options.source)) {
|
|
|
569 |
this.source = function( request, response ) {
|
|
|
570 |
response(filter(this.options.source, request.term));
|
|
|
571 |
};
|
|
|
572 |
} else {
|
|
|
573 |
initSource.call(this);
|
|
|
574 |
}
|
|
|
575 |
},
|
|
|
576 |
_renderItem: function(ul, item) {
|
|
|
577 |
if (item.retenu == true) {
|
|
|
578 |
item.label = '<strong>'+item.label+'</strong>';
|
|
|
579 |
}
|
|
|
580 |
|
|
|
581 |
return $('<li></li>')
|
|
|
582 |
.data('item.autocomplete', item)
|
|
|
583 |
.append($('<a></a>')[this.options.html ? 'html' : 'text'](item.label))
|
|
|
584 |
.appendTo(ul);
|
|
|
585 |
}
|
|
|
586 |
});
|
|
|
587 |
})(jQuery);
|
|
|
588 |
|
|
|
589 |
//+----------------------------------------------------------------------------------------------------------+
|
|
|
590 |
//UPLOAD PHOTO : Traitement de l'image => OK
|
|
|
591 |
|
|
|
592 |
$(document).ready(function() {
|
|
|
593 |
$('#fichier').on('click change', function(event) {
|
|
|
594 |
if ($(this).val().length > 0) {
|
|
|
595 |
arreter(event);
|
|
|
596 |
var options = {
|
|
|
597 |
success: afficherMiniature, // post-submit callback
|
|
|
598 |
dataType: 'xml', // 'xml', 'script', or 'json' (expected server response type)
|
|
|
599 |
resetForm: true // reset the form after successful submit
|
|
|
600 |
};
|
|
|
601 |
$('#miniature').append(
|
|
|
602 |
'<img id="miniature-chargement" class="miniature" alt="chargement" src="'+CHARGEMENT_IMAGE_URL+'"/>');
|
|
|
603 |
$('#ajouter-obs').attr('disabled', 'disabled');
|
|
|
604 |
if (verifierFormat($(this).val())) {
|
|
|
605 |
$('#form-upload').ajaxSubmit(options);
|
|
|
606 |
} else {
|
2006 |
aurelien |
607 |
$('#form-upload')[0].reset();
|
1922 |
jpm |
608 |
window.alert("Le format de fichier n'est pas supporté, les formats acceptés sont "+ $('#fichier').attr('accept'));
|
|
|
609 |
}
|
|
|
610 |
return false;
|
|
|
611 |
}
|
|
|
612 |
});
|
|
|
613 |
|
|
|
614 |
$('#photo-placeholder').click(function(event) {
|
|
|
615 |
$('#fichier').click();
|
|
|
616 |
});
|
|
|
617 |
|
|
|
618 |
$('body').on('click', '.effacer-miniature', function(event) {
|
|
|
619 |
supprimerMiniature($(this));
|
|
|
620 |
});
|
|
|
621 |
});
|
|
|
622 |
|
|
|
623 |
|
|
|
624 |
|
|
|
625 |
function verifierFormat(nom) {
|
|
|
626 |
var parts = nom.split('.');
|
|
|
627 |
extension = parts[parts.length - 1];
|
|
|
628 |
return (extension.toLowerCase() == 'jpeg' || extension.toLowerCase() == 'jpg');
|
|
|
629 |
}
|
|
|
630 |
|
|
|
631 |
function afficherMiniature(reponse) {
|
|
|
632 |
if (DEBUG) {
|
|
|
633 |
var debogage = $('debogage', reponse).text();
|
1964 |
jpm |
634 |
console.log('Débogage upload : ' + debogage);
|
1922 |
jpm |
635 |
}
|
|
|
636 |
var message = $('message', reponse).text();
|
|
|
637 |
if (message != '') {
|
|
|
638 |
$('#miniature-msg').append(message);
|
|
|
639 |
} else {
|
|
|
640 |
$('#miniatures').append(creerWidgetMiniature(reponse));
|
|
|
641 |
}
|
|
|
642 |
$('#ajouter-obs').removeAttr('disabled');
|
|
|
643 |
}
|
|
|
644 |
|
|
|
645 |
function creerWidgetMiniature(reponse) {
|
|
|
646 |
var miniatureUrl = $('miniature-url', reponse).text(),
|
|
|
647 |
imgNom = $('image-nom', reponse).text(),
|
|
|
648 |
html =
|
|
|
649 |
'<div class="miniature">'+
|
|
|
650 |
'<img class="miniature-img" class="miniature" alt="'+imgNom+'" src="'+miniatureUrl+'"/>'+
|
|
|
651 |
'<button class="btn effacer-miniature" type="button">Effacer</button>'+
|
|
|
652 |
'</div>'
|
|
|
653 |
return html;
|
|
|
654 |
}
|
|
|
655 |
|
|
|
656 |
function supprimerMiniature(miniature) {
|
|
|
657 |
miniature.parents('.miniature').remove();
|
|
|
658 |
}
|
|
|
659 |
|
|
|
660 |
function supprimerMiniatures() {
|
|
|
661 |
$('#miniatures').empty();
|
|
|
662 |
$('#miniature-msg').empty();
|
|
|
663 |
}
|
|
|
664 |
|
|
|
665 |
|
|
|
666 |
//+---------------------------------------------------------------------------------------------------------+
|
1916 |
jpm |
667 |
//FORMULAIRE : traitements génériques
|
|
|
668 |
|
1054 |
jpm |
669 |
$(document).ready(function() {
|
1922 |
jpm |
670 |
// Interaction générales
|
1916 |
jpm |
671 |
$('.alert .close').on('click', fermerPanneauAlert);
|
|
|
672 |
$('.has-tooltip').tooltip('enable');
|
|
|
673 |
$('#btn-aide').on('click', basculerAffichageAide);
|
1922 |
jpm |
674 |
$('.dropdown-menu input, .dropdown-menu label').on('click', function(event) {
|
|
|
675 |
event.stopPropagation();
|
|
|
676 |
});
|
1946 |
jpm |
677 |
|
|
|
678 |
// Gestion de la liste des taxons
|
|
|
679 |
ajouterAutocompletionNoms();
|
|
|
680 |
surChangementTaxonListe();
|
|
|
681 |
$('#taxon-liste').on('change', surChangementTaxonListe);
|
1964 |
jpm |
682 |
if (DEBUG) {
|
|
|
683 |
console.log('Selected taxon:'+$('#taxon-liste option:selected').val());
|
|
|
684 |
}
|
1922 |
jpm |
685 |
|
1946 |
jpm |
686 |
// Validation du formulaire
|
|
|
687 |
configurerFormValidator();
|
|
|
688 |
definirReglesFormValidator();
|
1916 |
jpm |
689 |
|
1922 |
jpm |
690 |
// Interaction sur le formulaire obs
|
|
|
691 |
configurerDatePicker('#date');
|
|
|
692 |
$('a.afficher-coord').on('click', basculerAffichageCoord);
|
|
|
693 |
$('.cb-milieux').on('click', function(event) {
|
|
|
694 |
$(this).valid();
|
|
|
695 |
event.stopPropagation();
|
|
|
696 |
});
|
|
|
697 |
$('#ajouter-obs').on('click', ajouterObs);
|
|
|
698 |
$('.obs-nbre').on('changement', surChangementNbreObs);
|
|
|
699 |
$('body').on('click', '.supprimer-obs', supprimerObs);
|
|
|
700 |
$('#transmettre-obs').on('click', transmettreObs);
|
1916 |
jpm |
701 |
|
1922 |
jpm |
702 |
// Défilement des photos
|
|
|
703 |
$('body').on('click', '.defilement-control-zone', function(event) {
|
|
|
704 |
defilerMiniatures($(this));
|
1054 |
jpm |
705 |
});
|
1922 |
jpm |
706 |
$('body').on('mouseover', '.defilement-control-zone', function(event) {
|
|
|
707 |
$('.defilement-control', this).removeClass('hidden');
|
1054 |
jpm |
708 |
});
|
1922 |
jpm |
709 |
$('body').on('mouseout', '.defilement-control-zone', function(event) {
|
|
|
710 |
$('.defilement-control', this).addClass('hidden');
|
1054 |
jpm |
711 |
});
|
|
|
712 |
});
|
|
|
713 |
|
1916 |
jpm |
714 |
function configurerFormValidator() {
|
|
|
715 |
$.validator.addMethod(
|
|
|
716 |
'dateCel',
|
|
|
717 |
function (value, element) {
|
|
|
718 |
return value == '' || (/^[0-9]{2}[-\/][0-9]{2}[-\/][0-9]{4}$/.test(value));
|
|
|
719 |
},
|
|
|
720 |
'Format : jj/mm/aaaa. Date incomplète, utiliser 0, exemple : 00/12/2011.');
|
|
|
721 |
|
|
|
722 |
$.extend($.validator.defaults, {
|
|
|
723 |
ignore: [],// Forcer Jquery Validate à examiner les éléments avec en display:none;
|
|
|
724 |
highlight: function(element) {
|
|
|
725 |
$(element).closest('.control-group').removeClass('success').addClass('error');
|
|
|
726 |
},
|
|
|
727 |
success: function(element) {
|
|
|
728 |
element.text('OK!').addClass('valid');
|
|
|
729 |
element.closest('.control-group').removeClass('error').addClass('success');
|
|
|
730 |
|
|
|
731 |
if (element.attr('id') == 'taxon' && $('#taxon').val() != '') {
|
|
|
732 |
// Si le taxon n'est pas lié au référentiel, on vide le data associé
|
|
|
733 |
if ($('#taxon').data('value') != $('#taxon').val()) {
|
|
|
734 |
$('#taxon').data('numNomSel', '');
|
|
|
735 |
$('#taxon').data('nomRet', '');
|
|
|
736 |
$('#taxon').data('numNomRet', '');
|
|
|
737 |
$('#taxon').data('nt', '');
|
|
|
738 |
$('#taxon').data('famille', '');
|
|
|
739 |
}
|
|
|
740 |
}
|
|
|
741 |
}
|
|
|
742 |
});
|
|
|
743 |
}
|
|
|
744 |
|
|
|
745 |
function definirReglesFormValidator() {
|
|
|
746 |
$('#form-observateur').validate({
|
|
|
747 |
rules: {
|
|
|
748 |
courriel: {
|
|
|
749 |
required: true,
|
|
|
750 |
email: true},
|
|
|
751 |
courriel_confirmation: {
|
|
|
752 |
required: true,
|
|
|
753 |
equalTo: '#courriel'},
|
|
|
754 |
prenom: {
|
|
|
755 |
required: true},
|
|
|
756 |
nom: {
|
|
|
757 |
required: true}
|
|
|
758 |
}
|
|
|
759 |
});
|
|
|
760 |
$('#form-obs').validate({
|
|
|
761 |
rules: {
|
|
|
762 |
station: {
|
|
|
763 |
required: true},
|
|
|
764 |
latitude : {
|
|
|
765 |
required: true,
|
|
|
766 |
range: [-90, 90]},
|
|
|
767 |
longitude: {
|
|
|
768 |
required: true,
|
|
|
769 |
range: [-180, 180]},
|
|
|
770 |
date: {
|
|
|
771 |
required: true,
|
|
|
772 |
'dateCel' : true},
|
1956 |
jpm |
773 |
coteRue: {
|
1916 |
jpm |
774 |
required: true},
|
|
|
775 |
'taxon-liste': {
|
|
|
776 |
required: true},
|
|
|
777 |
'milieux[]': {
|
|
|
778 |
required: true,
|
|
|
779 |
minlength: 1}
|
|
|
780 |
},
|
|
|
781 |
errorPlacement: function(error, element) {
|
|
|
782 |
if (element.attr('name') == 'date') {
|
|
|
783 |
element.parent('.input-prepend').after(error);
|
|
|
784 |
} else if (element.attr('name') == 'milieux[]') {
|
|
|
785 |
error.insertAfter('#milieux-controls');
|
|
|
786 |
} else {
|
|
|
787 |
error.insertAfter(element);
|
|
|
788 |
}
|
|
|
789 |
},
|
|
|
790 |
messages: {
|
|
|
791 |
'milieu[]': 'Vous devez sélectionner au moins un milieu'
|
|
|
792 |
}
|
|
|
793 |
});
|
|
|
794 |
}
|
|
|
795 |
|
1946 |
jpm |
796 |
function validerFormulaire() {
|
|
|
797 |
var observateur = $('#form-observateur').valid(),
|
|
|
798 |
obs = $('#form-obs').valid(),
|
1956 |
jpm |
799 |
debRue = (latLngDeb == undefined || latLngDeb == latLngFin) ? false : true,
|
|
|
800 |
finRue = (latLngFin == undefined || latLngDeb == latLngFin) ? false : true;
|
1946 |
jpm |
801 |
var ok = (observateur && obs && debRue && finRue) ? true : false;
|
1964 |
jpm |
802 |
//console.log('observateur:'+observateur+'-obs:'+obs+'-debRue:'+debRue+'('+latLngDeb+')-finRue:'+finRue+'('+latLngDeb+')');
|
1946 |
jpm |
803 |
return ok;
|
|
|
804 |
}
|
|
|
805 |
|
1916 |
jpm |
806 |
function surChangementTaxonListe() {
|
|
|
807 |
if ($('#taxon-liste').val() === '?') {
|
|
|
808 |
$('#taxon-input-groupe').removeClass('hidden');
|
|
|
809 |
} else {
|
|
|
810 |
$('#taxon-input-groupe').addClass('hidden');
|
|
|
811 |
}
|
|
|
812 |
}
|
|
|
813 |
|
|
|
814 |
function configurerDatePicker(selector) {
|
|
|
815 |
$.datepicker.setDefaults($.datepicker.regional['fr']);
|
|
|
816 |
$(selector).datepicker({
|
|
|
817 |
dateFormat: 'dd/mm/yy',
|
1987 |
jpm |
818 |
maxDate: new Date,
|
1916 |
jpm |
819 |
showOn: 'button',
|
|
|
820 |
buttonImageOnly: true,
|
|
|
821 |
buttonImage: CALENDRIER_ICONE_URL,
|
|
|
822 |
buttonText: 'Afficher le calendrier pour saisir la date.',
|
|
|
823 |
showButtonPanel: true,
|
|
|
824 |
onSelect: function(date) {
|
|
|
825 |
$(this).valid();
|
|
|
826 |
}
|
|
|
827 |
});
|
|
|
828 |
$(selector + ' + img.ui-datepicker-trigger').appendTo(selector + '-icone.add-on');
|
|
|
829 |
}
|
|
|
830 |
|
1922 |
jpm |
831 |
function fermerPanneauAlert() {
|
|
|
832 |
$(this).parentsUntil('.zone-alerte', '.alert').hide();
|
|
|
833 |
}
|
|
|
834 |
|
|
|
835 |
function basculerAffichageAide() {
|
|
|
836 |
if ($(this).hasClass('btn-warning')) {
|
|
|
837 |
$('.has-tooltip').tooltip('enable');
|
|
|
838 |
$(this).removeClass('btn-warning').addClass('btn-success');
|
|
|
839 |
$('#btn-aide-txt', this).text("Désactiver l'aide");
|
|
|
840 |
} else {
|
|
|
841 |
$('.has-tooltip').tooltip('disable');
|
|
|
842 |
$(this).removeClass('btn-success').addClass('btn-warning');
|
|
|
843 |
$('#btn-aide-txt', this).text("Activer l'aide");
|
1346 |
aurelien |
844 |
}
|
|
|
845 |
}
|
1054 |
jpm |
846 |
|
1922 |
jpm |
847 |
function basculerAffichageCoord() {
|
|
|
848 |
$('.afficher-coord-action').toggle();
|
|
|
849 |
$('#coordonnees-geo').toggle('slow');
|
|
|
850 |
//valeur false pour que le lien ne soit pas suivi
|
|
|
851 |
return false;
|
|
|
852 |
}
|
|
|
853 |
|
|
|
854 |
//+----------------------------------------------------------------------------------------------------------+
|
|
|
855 |
//CRÉER OBS : Gestion des obs => OK
|
|
|
856 |
|
|
|
857 |
var obsNbre = 0;
|
|
|
858 |
|
|
|
859 |
function ajouterObs() {
|
|
|
860 |
if (validerFormulaire() == true) {
|
|
|
861 |
obsNbre = obsNbre + 1;
|
|
|
862 |
$('.obs-nbre').text(obsNbre);
|
|
|
863 |
$('.obs-nbre').triggerHandler('changement');
|
|
|
864 |
afficherObs();
|
|
|
865 |
stockerObsData();
|
|
|
866 |
supprimerMiniatures();
|
|
|
867 |
} else {
|
1956 |
jpm |
868 |
// Affichage de tous les panneau cachés avec champ obligatoire
|
|
|
869 |
var debRue = (latLngDeb == undefined || latLngDeb == latLngFin) ? false : true,
|
|
|
870 |
finRue = (latLngFin == undefined || latLngDeb == latLngFin) ? false : true;
|
1922 |
jpm |
871 |
if (debRue == false || finRue == false) {
|
|
|
872 |
afficherPanneau('#dialogue-form-invalide-rue');
|
|
|
873 |
} else {
|
1956 |
jpm |
874 |
afficherPanneau('#dialogue-form-invalide');
|
1922 |
jpm |
875 |
}
|
1956 |
jpm |
876 |
montrerFormIdentite();
|
1922 |
jpm |
877 |
}
|
|
|
878 |
}
|
|
|
879 |
|
|
|
880 |
function afficherObs() {
|
|
|
881 |
var numNomSel = ($('#taxon-liste').val() == '?') ? $('#taxon').data('numNomSel') : $('#taxon-liste').val(),
|
|
|
882 |
nomSpecial = $('#taxon-liste option:selected').hasClass('nom-special'),
|
|
|
883 |
taxon = ($('#taxon-liste').val() == '?') ? $('#taxon').val() : $('#taxon-liste option:selected').data('nom-a-sauver'),
|
|
|
884 |
referentiel = (numNomSel == undefined) ? '' : '['+NOM_SCI_PROJET+']',
|
|
|
885 |
commune = $('#commune-nom').text(),
|
|
|
886 |
codeInsee = $('#commune-code-insee').text(),
|
1946 |
jpm |
887 |
station = $('input[name="adresse"]').val(),
|
1922 |
jpm |
888 |
lat = $('input[name="latitude"]').val(),
|
|
|
889 |
lng = $('input[name="longitude"]').val(),
|
|
|
890 |
date = $('#date').val(),
|
|
|
891 |
milieux = getMilieux(),
|
|
|
892 |
notes = (nomSpecial ? taxons[numNomSel]['nom_fr'] + ".<br />" : '') + $('#notes').val();
|
|
|
893 |
|
|
|
894 |
$('#liste-obs').prepend(
|
1946 |
jpm |
895 |
'<div id="obs'+obsNbre+'" class="row-fluid obs obs'+obsNbre+'">' +
|
|
|
896 |
'<div class="span12">' +
|
|
|
897 |
'<div class="well">' +
|
|
|
898 |
'<div class="obs-action pull-right has-tooltip" data-placement="bottom" ' +
|
|
|
899 |
'title="Supprimer cette observation de la liste à transmettre">' +
|
|
|
900 |
'<button class="btn btn-danger supprimer-obs" value="'+obsNbre+'" title="'+obsNbre+'">' +
|
|
|
901 |
'<i class="icon-trash icon-white"></i>' +
|
|
|
902 |
'</button>' +
|
|
|
903 |
'</div> ' +
|
|
|
904 |
'<div class="row-fluid">' +
|
|
|
905 |
'<div class="span2 obs-miniatures">' +
|
|
|
906 |
ajouterImgMiniatureAuTransfert() +
|
1922 |
jpm |
907 |
'</div>'+
|
1946 |
jpm |
908 |
'<div class="span7">' +
|
|
|
909 |
'<ul class="unstyled">' +
|
1922 |
jpm |
910 |
'<li>'+
|
|
|
911 |
'<span class="nom-sci">' + taxon + '</span> ' +
|
1946 |
jpm |
912 |
formaterNumNomSel(numNomSel) +
|
|
|
913 |
' observé à <br />' +
|
1992 |
jpm |
914 |
'<span class="commune">' + commune + '</span> ' +
|
|
|
915 |
'(' + codeInsee + '), ' +
|
1946 |
jpm |
916 |
'<span class="station">' + station + '</span><br /> ' +
|
1922 |
jpm |
917 |
' le ' +
|
|
|
918 |
'<span class="date">' + date + '</span>' +
|
|
|
919 |
'</li>' +
|
|
|
920 |
'<li>' +
|
1946 |
jpm |
921 |
'Milieux : ' + milieux + ' ' + ' ; ' +
|
1922 |
jpm |
922 |
'</li>' +
|
|
|
923 |
'<li>' +
|
1946 |
jpm |
924 |
'Notes : ' + notes +
|
|
|
925 |
'</li>' +
|
|
|
926 |
'</ul>' +
|
|
|
927 |
'</div>' +
|
|
|
928 |
'</div>' +
|
|
|
929 |
'</div>' +
|
1922 |
jpm |
930 |
'</div>'+
|
|
|
931 |
'</div>');
|
|
|
932 |
}
|
|
|
933 |
|
|
|
934 |
function getMilieux() {
|
|
|
935 |
var milieuxStr = '',
|
|
|
936 |
milieux = [];
|
|
|
937 |
$('.cb-milieux:checked').each(function() {
|
|
|
938 |
milieux.push($(this).val());
|
|
|
939 |
});
|
|
|
940 |
|
|
|
941 |
milieuxStr = Array.prototype.slice.call(milieux).join(', ');
|
|
|
942 |
return milieuxStr;
|
|
|
943 |
}
|
|
|
944 |
|
|
|
945 |
function ajouterImgMiniatureAuTransfert() {
|
|
|
946 |
var html = '',
|
|
|
947 |
miniatures = '',
|
|
|
948 |
indicateurs = '',
|
|
|
949 |
premiere = true,
|
|
|
950 |
numero = 1;
|
|
|
951 |
if ($('#miniatures img').length == 0) {
|
|
|
952 |
html = '<img class="miniature" alt="Aucune photo"src="'+PAS_DE_PHOTO_ICONE_URL+'" />';
|
|
|
953 |
} else if ($('#miniatures img').length >= 1) {
|
|
|
954 |
$('#miniatures img').each(function() {
|
|
|
955 |
var visible = premiere ? 'miniature-selectionnee' : 'miniature-cachee',
|
|
|
956 |
css = $(this).hasClass('b64') ? 'miniature b64' : 'miniature',
|
|
|
957 |
src = $(this).attr('src'),
|
|
|
958 |
alt = $(this).attr('alt');
|
|
|
959 |
|
|
|
960 |
var miniature = '<img class="'+css+' '+visible+'" alt="'+alt+'"src="'+src+'" />';
|
|
|
961 |
miniatures += miniature;
|
|
|
962 |
|
|
|
963 |
var indicateurActif = premiere ? 'active' : '';
|
|
|
964 |
var indicateur = '<li class="' + indicateurActif + '" data-numero="' + numero++ + '"></li>';
|
|
|
965 |
indicateurs += indicateur;
|
|
|
966 |
|
|
|
967 |
premiere = false;
|
|
|
968 |
});
|
|
|
969 |
|
|
|
970 |
if ($('#miniatures img').length == 1) {
|
|
|
971 |
html = miniatures;
|
|
|
972 |
} else {
|
|
|
973 |
html =
|
|
|
974 |
'<div class="defilement">' +
|
|
|
975 |
miniatures +
|
|
|
976 |
'<a class="defilement-control-zone gauche">' +
|
|
|
977 |
' <span class="defilement-control gauche hidden"><</span>' +
|
|
|
978 |
'</a>' +
|
|
|
979 |
'<a class="defilement-control-zone droite">' +
|
|
|
980 |
' <span class="defilement-control droite hidden">></span>' +
|
|
|
981 |
'</a>' +
|
|
|
982 |
'<ol class="defilement-indicateurs">' + indicateurs + '</ol>' +
|
|
|
983 |
'</div>';
|
|
|
984 |
}
|
|
|
985 |
}
|
|
|
986 |
return html;
|
|
|
987 |
}
|
|
|
988 |
|
|
|
989 |
function defilerMiniatures(element) {
|
|
|
990 |
var miniatureSelectionne = element.siblings('img.miniature-selectionnee');
|
|
|
991 |
miniatureSelectionne.removeClass('miniature-selectionnee').addClass('miniature-cachee');
|
|
|
992 |
var miniatureAffichee = miniatureSelectionne;
|
|
|
993 |
|
|
|
994 |
var indicateurActif = element.parent().find('.defilement-indicateurs .active');
|
|
|
995 |
indicateurActif.removeClass('active');
|
|
|
996 |
|
|
|
997 |
if (element.hasClass('defilement-control-zone') && element.hasClass('gauche')) {
|
|
|
998 |
if (miniatureSelectionne.prev('.miniature').length != 0) {
|
|
|
999 |
miniatureAffichee = miniatureSelectionne.prev('.miniature');
|
|
|
1000 |
indicateurActif.prev().addClass('active');
|
|
|
1001 |
} else {
|
|
|
1002 |
miniatureAffichee = miniatureSelectionne.siblings('.miniature').last();
|
|
|
1003 |
indicateurActif.siblings().last().addClass('active');
|
|
|
1004 |
}
|
|
|
1005 |
} else {
|
|
|
1006 |
if (miniatureSelectionne.next('.miniature').length != 0) {
|
|
|
1007 |
miniatureAffichee = miniatureSelectionne.next('.miniature');
|
|
|
1008 |
indicateurActif.next().addClass('active');
|
|
|
1009 |
} else {
|
|
|
1010 |
miniatureAffichee = miniatureSelectionne.siblings('.miniature').first();
|
|
|
1011 |
indicateurActif.siblings().first().addClass('active');
|
|
|
1012 |
}
|
|
|
1013 |
}
|
|
|
1014 |
miniatureAffichee.addClass('miniature-selectionnee').removeClass('miniature-cachee');
|
|
|
1015 |
}
|
|
|
1016 |
|
|
|
1017 |
function formaterNumNomSel(numNomSel) {
|
|
|
1018 |
var nn = '';
|
|
|
1019 |
if (numNomSel == undefined) {
|
|
|
1020 |
nn = '<span class="alert-error">[non lié au référentiel]</span>';
|
|
|
1021 |
} else {
|
|
|
1022 |
nn = '<span class="nn">[nn'+numNomSel+']</span>';
|
|
|
1023 |
}
|
|
|
1024 |
return nn;
|
|
|
1025 |
}
|
|
|
1026 |
|
|
|
1027 |
function surChangementReferentiel() {
|
|
|
1028 |
NOM_SCI_PROJET = $('#referentiel').val();
|
|
|
1029 |
NOM_SCI_REFERENTIEL = NOM_SCI_PROJET+':'+PROJETS_VERSIONS[NOM_SCI_PROJET];
|
|
|
1030 |
$('#taxon').val('');
|
|
|
1031 |
}
|
|
|
1032 |
|
|
|
1033 |
function surChangementNbreObs() {
|
|
|
1034 |
if (obsNbre == 0) {
|
|
|
1035 |
$('#transmettre-obs').attr('disabled', 'disabled');
|
|
|
1036 |
$('#ajouter-obs').removeAttr('disabled');
|
|
|
1037 |
$('#zone-liste-obs').addClass('hidden');
|
|
|
1038 |
} else {
|
|
|
1039 |
$('#zone-liste-obs').removeClass('hidden');
|
|
|
1040 |
|
|
|
1041 |
if (obsNbre > 0 && obsNbre < OBS_MAX_NBRE) {
|
|
|
1042 |
$('#transmettre-obs').removeAttr('disabled');
|
|
|
1043 |
$('#ajouter-obs').removeAttr('disabled');
|
|
|
1044 |
} else if (obsNbre >= OBS_MAX_NBRE) {
|
|
|
1045 |
$('#ajouter-obs').attr('disabled', 'disabled');
|
|
|
1046 |
afficherPanneau('#dialogue-bloquer-creer-obs');
|
|
|
1047 |
}
|
|
|
1048 |
}
|
|
|
1049 |
}
|
|
|
1050 |
|
1346 |
aurelien |
1051 |
function supprimerObs() {
|
|
|
1052 |
var obsId = $(this).val();
|
|
|
1053 |
// Problème avec IE 6 et 7
|
1922 |
jpm |
1054 |
if (obsId == 'Supprimer') {
|
|
|
1055 |
obsId = $(this).attr('title');
|
1346 |
aurelien |
1056 |
}
|
1922 |
jpm |
1057 |
obsNbre = obsNbre - 1;
|
|
|
1058 |
$('.obs-nbre').text(obsNbre);
|
|
|
1059 |
$('.obs-nbre').triggerHandler('changement');
|
1346 |
aurelien |
1060 |
|
1922 |
jpm |
1061 |
$('.obs'+obsId).remove();
|
|
|
1062 |
$('#liste-obs').removeData('obsId' + obsId);
|
1346 |
aurelien |
1063 |
}
|
1054 |
jpm |
1064 |
|
1922 |
jpm |
1065 |
function initialiserObs() {
|
|
|
1066 |
obsNbre = 0;
|
|
|
1067 |
$('.obs-nbre').text(obsNbre);
|
|
|
1068 |
$('.obs-nbre').triggerHandler('changement');
|
|
|
1069 |
$('#liste-obs').removeData();
|
|
|
1070 |
$('.obs').remove();
|
|
|
1071 |
$('#dialogue-bloquer-creer-obs').hide();
|
|
|
1072 |
}
|
|
|
1073 |
|
|
|
1074 |
function stockerObsData() {
|
|
|
1075 |
var nomHorsListe = $('#taxon-liste').val() == '?' ? true : false;
|
|
|
1076 |
nomSpecial = $('#taxon-liste option:selected').hasClass('nom-special'),
|
|
|
1077 |
numNomSel = nomHorsListe ? $('#taxon').data('numNomSel') : $('#taxon-liste').val(),
|
|
|
1078 |
nomSel = nomHorsListe ? $('#taxon').val() : $('#taxon-liste option:selected').data('nom-a-sauver'),
|
|
|
1079 |
nomRet = nomHorsListe ? $('#taxon').data('nomRet') : taxons[numNomSel]['nom_ret'],
|
|
|
1080 |
numNomRet = nomHorsListe ? $('#taxon').data('numNomRet') : taxons[numNomSel]['num_nom_ret'],
|
|
|
1081 |
numTaxon = nomHorsListe ? $('#taxon').data('nt') : taxons[numNomSel]['num_taxon'],
|
|
|
1082 |
famille = nomHorsListe ? $('#taxon').data('famille') : taxons[numNomSel]['famille'],
|
|
|
1083 |
referentiel = (numNomSel == undefined) ? '' : NOM_SCI_REFERENTIEL,
|
|
|
1084 |
notes = (nomSpecial ? taxons[numNomSel]['nom_fr'] + '. ' : '') + $('#notes').val();
|
|
|
1085 |
|
|
|
1086 |
$('#liste-obs').data('obsId'+obsNbre, {
|
|
|
1087 |
'date': $('#date').val(),
|
|
|
1088 |
'notes': notes,
|
|
|
1089 |
|
1946 |
jpm |
1090 |
'station': $('input[name="adresse"]').val(),
|
1922 |
jpm |
1091 |
'latitude': $('#latitude').val(),
|
|
|
1092 |
'longitude': $('#longitude').val(),
|
|
|
1093 |
'commune_nom': $('#commune-nom').text(),
|
|
|
1094 |
'commune_code_insee': $('#commune-code-insee').text(),
|
|
|
1095 |
|
|
|
1096 |
'nom_sel': nomSel,
|
|
|
1097 |
'num_nom_sel': numNomSel,
|
|
|
1098 |
'nom_ret': nomRet,
|
|
|
1099 |
'num_nom_ret': numNomRet,
|
|
|
1100 |
'num_taxon': numTaxon,
|
|
|
1101 |
'famille': famille,
|
|
|
1102 |
'referentiel': referentiel,
|
|
|
1103 |
|
|
|
1104 |
'milieu': getMilieux(),
|
|
|
1105 |
|
|
|
1106 |
// Ajout des champs images
|
|
|
1107 |
'image_nom': getNomsImgsOriginales(),
|
|
|
1108 |
|
|
|
1109 |
// Ajout des champs étendus de l'obs
|
|
|
1110 |
'obs_etendue': getObsChpEtendus()
|
|
|
1111 |
});
|
1964 |
jpm |
1112 |
if (DEBUG) {
|
|
|
1113 |
console.log($('#liste-obs').data('obsId'+obsNbre));
|
|
|
1114 |
}
|
1922 |
jpm |
1115 |
}
|
|
|
1116 |
|
1946 |
jpm |
1117 |
function getNomsImgsOriginales() {
|
|
|
1118 |
var noms = new Array();
|
|
|
1119 |
$('.miniature-img').each(function() {
|
|
|
1120 |
noms.push($(this).attr('alt'));
|
|
|
1121 |
});
|
|
|
1122 |
return noms;
|
|
|
1123 |
}
|
|
|
1124 |
|
1922 |
jpm |
1125 |
function getObsChpEtendus() {
|
1946 |
jpm |
1126 |
var champs = [];
|
1922 |
jpm |
1127 |
if (latLngDeb != undefined) {
|
|
|
1128 |
var latitudeDebutRue = {cle: 'latitudeDebutRue', label: 'Latitude du début de la rue', valeur: latLngDeb.lat().toFixed(5)};
|
|
|
1129 |
champs.push(latitudeDebutRue);
|
|
|
1130 |
var longitudeDebutRue = {cle: 'longitudeDebutRue', label: 'Longitude du début de la rue', valeur: latLngDeb.lng().toFixed(5)};
|
|
|
1131 |
champs.push(longitudeDebutRue);
|
|
|
1132 |
}
|
|
|
1133 |
if (latLngFin != undefined) {
|
|
|
1134 |
var latitudeFinRue = {cle: 'latitudeFinRue', label: 'Latitude de fin de la rue', valeur: latLngFin.lat().toFixed(5)};
|
|
|
1135 |
champs.push(latitudeFinRue);
|
|
|
1136 |
var longitudeFinRue = {cle: 'longitudeFinRue', label: 'Longitude de fin de la rue', valeur: latLngFin.lng().toFixed(5)};
|
|
|
1137 |
champs.push(longitudeFinRue);
|
|
|
1138 |
}
|
|
|
1139 |
|
|
|
1140 |
$('.obs-chp-etendu').each(function() {
|
|
|
1141 |
var valeur = $(this).val(),
|
|
|
1142 |
cle = $(this).attr('name'),
|
|
|
1143 |
label = $(this).data('label');
|
|
|
1144 |
if (valeur != '') {
|
|
|
1145 |
var chpEtendu = {cle: cle, label: label, valeur: valeur};
|
|
|
1146 |
champs.push(chpEtendu);
|
|
|
1147 |
}
|
|
|
1148 |
});
|
|
|
1149 |
return champs;
|
|
|
1150 |
}
|
|
|
1151 |
|
|
|
1152 |
//+----------------------------------------------------------------------------------------------------------+
|
|
|
1153 |
//TRANSFERER OBS : envoie des obs au CEL => OK
|
|
|
1154 |
|
|
|
1155 |
function transmettreObs() {
|
|
|
1156 |
var observations = $('#liste-obs').data();
|
|
|
1157 |
|
|
|
1158 |
if (observations == undefined || jQuery.isEmptyObject(observations)) {
|
|
|
1159 |
afficherPanneau('#dialogue-zero-obs');
|
|
|
1160 |
} else {
|
|
|
1161 |
observations['projet'] = TAG_PROJET;
|
|
|
1162 |
observations['tag-obs'] = TAG_OBS;
|
|
|
1163 |
observations['tag-img'] = TAG_IMG;
|
|
|
1164 |
|
|
|
1165 |
var utilisateur = new Object();
|
|
|
1166 |
utilisateur.id_utilisateur = $('#id_utilisateur').val();
|
|
|
1167 |
utilisateur.prenom = $('#prenom').val();
|
|
|
1168 |
utilisateur.nom = $('#nom').val();
|
|
|
1169 |
utilisateur.courriel = $('#courriel').val();
|
|
|
1170 |
observations['utilisateur'] = utilisateur;
|
1965 |
jpm |
1171 |
|
|
|
1172 |
if (DEBUG) {
|
|
|
1173 |
console.log(observations);
|
|
|
1174 |
}
|
1922 |
jpm |
1175 |
envoyerObsAuCel(observations);
|
|
|
1176 |
}
|
|
|
1177 |
return false;
|
|
|
1178 |
}
|
|
|
1179 |
|
|
|
1180 |
function envoyerObsAuCel(observations) {
|
|
|
1181 |
var erreurMsg = '',
|
|
|
1182 |
debugNonJson = '';
|
|
|
1183 |
$.ajax({
|
|
|
1184 |
url: SERVICE_SAISIE_URL,
|
|
|
1185 |
type: 'POST',
|
|
|
1186 |
data: observations,
|
|
|
1187 |
dataType: 'json',
|
|
|
1188 |
beforeSend: function() {
|
|
|
1189 |
$('#dialogue-obs-transaction-ko').hide();
|
|
|
1190 |
$('#dialogue-obs-transaction-ok').hide();
|
1961 |
jpm |
1191 |
$('.alert-txt').empty();
|
1922 |
jpm |
1192 |
$('#chargement').show();
|
|
|
1193 |
},
|
|
|
1194 |
success: function(data, textStatus, jqXHR) {
|
|
|
1195 |
$('#dialogue-obs-transaction-ok .alert-txt').append($('#tpl-transmission-ok').clone().html());
|
|
|
1196 |
supprimerMiniatures();
|
|
|
1197 |
},
|
|
|
1198 |
statusCode: {
|
|
|
1199 |
500: function(jqXHR, textStatus, errorThrown) {
|
|
|
1200 |
erreurMsg += "Erreur 500 :\ntype : " + textStatus + ' ' + errorThrown + "\n";
|
|
|
1201 |
}
|
|
|
1202 |
},
|
|
|
1203 |
error: function(jqXHR, textStatus, errorThrown) {
|
|
|
1204 |
erreurMsg += "Erreur Ajax :\ntype : " + textStatus + ' ' + errorThrown + "\n";
|
|
|
1205 |
try {
|
|
|
1206 |
reponse = jQuery.parseJSON(jqXHR.responseText);
|
|
|
1207 |
if (reponse != null) {
|
|
|
1208 |
$.each(reponse, function (cle, valeur) {
|
|
|
1209 |
erreurMsg += valeur + "\n";
|
|
|
1210 |
});
|
|
|
1211 |
}
|
|
|
1212 |
} catch(e) {
|
|
|
1213 |
erreurMsg += "L'erreur n'est pas en JSON.";
|
|
|
1214 |
debugNonJson = jqXHR.responseText;
|
|
|
1215 |
}
|
|
|
1216 |
},
|
|
|
1217 |
complete: function(jqXHR, textStatus) {
|
|
|
1218 |
$('#chargement').hide();
|
|
|
1219 |
var debugMsg = extraireEnteteDebug(jqXHR);
|
|
|
1220 |
|
|
|
1221 |
if (erreurMsg != '') {
|
|
|
1222 |
if (DEBUG) {
|
|
|
1223 |
$('#dialogue-obs-transaction-ko .alert-txt').append('<pre class="msg-erreur">' + erreurMsg + '</pre>');
|
|
|
1224 |
$('#dialogue-obs-transaction-ko .alert-txt').append('<pre class="msg-debug">Débogage : ' + debugNonJson + debugMsg + '</pre>');
|
|
|
1225 |
}
|
|
|
1226 |
var hrefCourriel = 'mailto:cel_remarques@tela-botanica.org?' +
|
|
|
1227 |
'subject=Disfonctionnement du widget de saisie ' + TAG_PROJET +
|
|
|
1228 |
'&body=' + erreurMsg + "\nDébogage :\n" + debugMsg + debugNonJson;
|
|
|
1229 |
|
|
|
1230 |
$('#dialogue-obs-transaction-ko .alert-txt').append($('#tpl-transmission-ko').clone()
|
|
|
1231 |
.find('.courriel-erreur')
|
|
|
1232 |
.attr('href', hrefCourriel)
|
|
|
1233 |
.end()
|
|
|
1234 |
.html());
|
|
|
1235 |
$('#dialogue-obs-transaction-ko').show();
|
|
|
1236 |
} else {
|
|
|
1237 |
if (DEBUG) {
|
|
|
1238 |
$('#dialogue-obs-transaction-ok .alert-txt').append('<pre class="msg-debug">Débogage : ' + debugMsg + debugNonJson + '</pre>');
|
|
|
1239 |
}
|
|
|
1240 |
$('#dialogue-obs-transaction-ok').show();
|
|
|
1241 |
}
|
|
|
1242 |
initialiserObs();
|
|
|
1243 |
}
|
|
|
1244 |
});
|
1054 |
jpm |
1245 |
}
|