2697 |
mathias |
1 |
// Héritage !!
|
|
|
2 |
function WidgetSaisieSauvages() {
|
|
|
3 |
this.markerDeb = undefined;
|
|
|
4 |
this.latLngDeb = undefined;
|
|
|
5 |
this.markerFin = undefined;
|
|
|
6 |
this.latLngCentre = undefined;
|
|
|
7 |
this.latLngFin = undefined;
|
|
|
8 |
this.ligneRue = undefined;
|
|
|
9 |
this.premierDeplacement = true;
|
|
|
10 |
this.valeurChamp = "";
|
|
|
11 |
this.avertissementDeuxPhotosAffiche = false;
|
2700 |
mathias |
12 |
this.googleMapMarqueurDebutUrl = null;
|
|
|
13 |
this.googleMapMarqueurFinUrl = null;
|
|
|
14 |
this.ville = null;
|
|
|
15 |
this.supprimerIconeUrl = null;
|
2744 |
aurelien |
16 |
this.serviceTraceRueUrl = null;
|
2709 |
mathias |
17 |
this.taxons = {};
|
2744 |
aurelien |
18 |
this.listeRues = {};
|
|
|
19 |
this.indexRueSelectionnee = 0;
|
2748 |
aurelien |
20 |
this.requeteRechercheRue = null;
|
|
|
21 |
this.aucuneRueSelectionnee = "Aucune rue sélectionnée";
|
|
|
22 |
this.nomDeRueInconnue = "Nom de rue inconnu";
|
2701 |
mathias |
23 |
}
|
2697 |
mathias |
24 |
WidgetSaisieSauvages.prototype = new WidgetSaisie();
|
1346 |
aurelien |
25 |
|
2697 |
mathias |
26 |
// surcharge
|
|
|
27 |
WidgetSaisieSauvages.prototype.initCarto = function() {
|
|
|
28 |
this.initialiserGoogleMap();
|
|
|
29 |
this.afficherEtapeGeolocalisation(1);
|
2736 |
mathias |
30 |
this.latLng = true; // patch cracra pour éviter de surcharger trouvercommune()
|
2707 |
mathias |
31 |
|
2708 |
mathias |
32 |
var lthis = this;
|
2707 |
mathias |
33 |
$('#carte-recherche').autocomplete({
|
|
|
34 |
//Cette partie utilise geocoder pour extraire des valeurs d'adresse
|
|
|
35 |
source: function(request, response) {
|
|
|
36 |
lthis.geocoder.geocode( {'address': request.term+', France', 'region' : 'fr' }, function(results, status) {
|
|
|
37 |
if (status == google.maps.GeocoderStatus.OK) {
|
|
|
38 |
response($.map(results, function(item) {
|
|
|
39 |
var rue = "";
|
|
|
40 |
$.each(item.address_components, function(){
|
|
|
41 |
if (this.types[0] == "route" || this.types[0] == "street_address" ) {
|
|
|
42 |
rue = this.short_name;
|
|
|
43 |
}
|
|
|
44 |
});
|
|
|
45 |
var retour = {
|
|
|
46 |
label: item.formatted_address,
|
|
|
47 |
value: rue,
|
|
|
48 |
latitude: item.geometry.location.lat(),
|
|
|
49 |
longitude: item.geometry.location.lng()
|
|
|
50 |
};
|
|
|
51 |
return retour;
|
|
|
52 |
}));
|
|
|
53 |
} else {
|
|
|
54 |
lthis.afficherErreurGoogleMap(status);
|
|
|
55 |
}
|
|
|
56 |
});
|
|
|
57 |
},
|
|
|
58 |
// Cette partie est executee a la selection d'une adresse
|
|
|
59 |
select: function(event, ui) {
|
|
|
60 |
var nouvellePosition = new google.maps.LatLng(ui.item.latitude, ui.item.longitude);
|
|
|
61 |
lthis.initialiserMarkerDeb();
|
|
|
62 |
lthis.deplacerMarkerDeb(nouvellePosition);
|
|
|
63 |
lthis.map.setZoom(16);
|
|
|
64 |
lthis.afficherEtapeGeolocalisation(2);
|
|
|
65 |
}
|
|
|
66 |
});
|
2701 |
mathias |
67 |
};
|
1054 |
jpm |
68 |
|
2697 |
mathias |
69 |
//surcharge
|
|
|
70 |
WidgetSaisieSauvages.prototype.initForm = function() {
|
2708 |
mathias |
71 |
// super() à la main - toute autre manière de faire est über-komplex
|
|
|
72 |
WidgetSaisie.prototype.initForm.call(this);
|
1916 |
jpm |
73 |
|
2697 |
mathias |
74 |
this.surChangementTaxonListe();
|
|
|
75 |
$('#taxon-liste').on('change', this.surChangementTaxonListe);
|
2700 |
mathias |
76 |
if (this.debug) {
|
2697 |
mathias |
77 |
console.log('Selected taxon:'+$('#taxon-liste option:selected').val());
|
1916 |
jpm |
78 |
}
|
2697 |
mathias |
79 |
$('#taxon-liste').on('blur', this.surChangementValeurTaxon);
|
|
|
80 |
$('#taxon').on('blur', this.surChangementValeurTaxon);
|
2701 |
mathias |
81 |
};
|
1916 |
jpm |
82 |
|
2697 |
mathias |
83 |
//surcharge
|
|
|
84 |
WidgetSaisieSauvages.prototype.initEvts = function() {
|
|
|
85 |
var lthis = this;
|
2700 |
mathias |
86 |
// super() à la main - toute autre manière de faire est über-komplex
|
|
|
87 |
WidgetSaisie.prototype.initEvts.call(this);
|
|
|
88 |
|
|
|
89 |
$('.dropdown-menu input, .dropdown-menu label').on('click', function(event) {
|
|
|
90 |
event.stopPropagation();
|
2697 |
mathias |
91 |
});
|
2700 |
mathias |
92 |
$('#fichier').off(); // elever l'écouteur d'événements de base
|
2697 |
mathias |
93 |
$('#fichier').on('click change', function(event) {
|
|
|
94 |
|
|
|
95 |
if($("#photos-conteneur #miniatures .miniature").length == 1 && ! lthis.avertissementDeuxPhotosAffiche) {
|
|
|
96 |
messageAvertissement = "Attention: \n"+
|
|
|
97 |
"Sélectionnez uniquement les photos correspondantes à une seule plante \n"+
|
|
|
98 |
"(c'est à dire correspondant à un seul individu d'une espèce donnée) \n"+
|
|
|
99 |
"vue dans le tronçon de rue inventoriée ";
|
|
|
100 |
if(window.confirm(messageAvertissement)) {
|
|
|
101 |
lthis.avertissementDeuxPhotosAffiche = true;
|
|
|
102 |
return true;
|
|
|
103 |
} else {
|
|
|
104 |
return false;
|
1916 |
jpm |
105 |
}
|
2697 |
mathias |
106 |
}
|
|
|
107 |
if ($(this).val().length > 0) {
|
|
|
108 |
arreter(event);
|
|
|
109 |
var options = {
|
|
|
110 |
success: lthis.afficherMiniature.bind(lthis), // post-submit callback
|
|
|
111 |
dataType: 'xml', // 'xml', 'script', or 'json' (expected server response type)
|
|
|
112 |
resetForm: true // reset the form after successful submit
|
|
|
113 |
};
|
|
|
114 |
$('#miniature').append(
|
2700 |
mathias |
115 |
'<img id="miniature-chargement" class="miniature" alt="chargement" src="'+ this.chargementImageIconeUrl +'"/>');
|
2697 |
mathias |
116 |
$('#ajouter-obs').attr('disabled', 'disabled');
|
|
|
117 |
if (lthis.verifierFormat($(this).val())) {
|
|
|
118 |
$('#form-upload').ajaxSubmit(options);
|
|
|
119 |
} else {
|
|
|
120 |
$('#form-upload')[0].reset();
|
|
|
121 |
window.alert("Le format de fichier n'est pas supporté, les formats acceptés sont "+ $('#fichier').attr('accept'));
|
|
|
122 |
}
|
|
|
123 |
return false;
|
|
|
124 |
}
|
1916 |
jpm |
125 |
});
|
|
|
126 |
|
2697 |
mathias |
127 |
$('.cb-milieux').on('click', function(event) {
|
|
|
128 |
$(this).valid();
|
|
|
129 |
event.stopPropagation();
|
|
|
130 |
});
|
1956 |
jpm |
131 |
|
2697 |
mathias |
132 |
// Défilement des photos
|
|
|
133 |
$('body').on('click', '.defilement-control-zone', function(event) {
|
|
|
134 |
lthis.defilerMiniatures($(this));
|
|
|
135 |
});
|
|
|
136 |
$('body').on('mouseover', '.defilement-control-zone', function(event) {
|
|
|
137 |
$('.defilement-control', this).removeClass('hidden');
|
|
|
138 |
});
|
|
|
139 |
$('body').on('mouseout', '.defilement-control-zone', function(event) {
|
|
|
140 |
$('.defilement-control', this).addClass('hidden');
|
|
|
141 |
});
|
1916 |
jpm |
142 |
|
2697 |
mathias |
143 |
$('#photo-placeholder').click(function(event) {
|
|
|
144 |
$('#fichier').click();
|
|
|
145 |
});
|
|
|
146 |
$('#geolocaliser').on('click', this.geolocaliser.bind(this));
|
2744 |
aurelien |
147 |
|
2745 |
aurelien |
148 |
$('.navigation-rue').on('click', this.surClicRueSuivantPrecedent.bind(this));
|
2701 |
mathias |
149 |
};
|
2408 |
jpm |
150 |
|
2697 |
mathias |
151 |
WidgetSaisieSauvages.prototype.montrerFormIdentite = function() {
|
|
|
152 |
$('#zone-courriel-confirmation, #zone-prenom-nom').css('display', 'block');
|
2701 |
mathias |
153 |
};
|
2697 |
mathias |
154 |
|
|
|
155 |
// surcharge
|
|
|
156 |
WidgetSaisieSauvages.prototype.initialiserGoogleMap = function() {
|
|
|
157 |
var lthis = this;
|
|
|
158 |
this.latLngDeb = new google.maps.LatLng(48.8543, 2.3483);// Paris
|
2700 |
mathias |
159 |
if (this.ville == 'Marseille') {
|
2697 |
mathias |
160 |
this.latLngDeb = new google.maps.LatLng(43.29545, 5.37458);
|
2700 |
mathias |
161 |
} else if (this.ville == 'Montpellier') {
|
2697 |
mathias |
162 |
this.latLngDeb = new google.maps.LatLng(43.61077, 3.87672);
|
1946 |
jpm |
163 |
}
|
1922 |
jpm |
164 |
var options = {
|
1946 |
jpm |
165 |
zoom: 16,
|
2697 |
mathias |
166 |
center: this.latLngDeb,
|
1922 |
jpm |
167 |
mapTypeId: google.maps.MapTypeId.HYBRID,
|
|
|
168 |
mapTypeControlOptions: {
|
2408 |
jpm |
169 |
mapTypeIds: ['OSM',
|
|
|
170 |
google.maps.MapTypeId.ROADMAP,
|
|
|
171 |
google.maps.MapTypeId.HYBRID,
|
|
|
172 |
google.maps.MapTypeId.SATELLITE,
|
1922 |
jpm |
173 |
google.maps.MapTypeId.TERRAIN]}
|
|
|
174 |
};
|
2408 |
jpm |
175 |
|
1922 |
jpm |
176 |
// Ajout de la couche OSM à la carte
|
|
|
177 |
osmMapType = new google.maps.ImageMapType({
|
|
|
178 |
getTileUrl: function(coord, zoom) {
|
|
|
179 |
return 'http://tile.openstreetmap.org/' + zoom + '/' + coord.x + '/' + coord.y + '.png';
|
|
|
180 |
},
|
|
|
181 |
tileSize: new google.maps.Size(256, 256),
|
|
|
182 |
isPng: true,
|
|
|
183 |
alt: 'OpenStreetMap',
|
|
|
184 |
name: 'OSM',
|
|
|
185 |
maxZoom: 19
|
1346 |
aurelien |
186 |
});
|
2408 |
jpm |
187 |
|
1922 |
jpm |
188 |
// Création de la carte Google
|
2697 |
mathias |
189 |
this.map = new google.maps.Map(document.getElementById('map-canvas'), options); //affiche la google map dans la div map_canvas
|
|
|
190 |
this.map.mapTypes.set('OSM', osmMapType);
|
2408 |
jpm |
191 |
|
1922 |
jpm |
192 |
// Ajout de l'évènment sur click dans Carte
|
2697 |
mathias |
193 |
google.maps.event.addListener(this.map, 'click', this.surClickDansCarte.bind(this));
|
2408 |
jpm |
194 |
|
1922 |
jpm |
195 |
// Lorsque la carte est chargée, on vérifie si on peut précharger des données
|
2697 |
mathias |
196 |
google.maps.event.addListenerOnce(this.map, 'idle', function(){
|
1922 |
jpm |
197 |
// Initialisation du marker de début de rue
|
2758 |
aurelien |
198 |
if (!lthis.obsId) {
|
2256 |
aurelien |
199 |
// Tentative de geocalisation si aucune obs à précharger
|
2758 |
aurelien |
200 |
lthis.initialiserMarkerDeb();
|
2697 |
mathias |
201 |
lthis.tenterGeolocalisation();
|
2256 |
aurelien |
202 |
}
|
1346 |
aurelien |
203 |
});
|
2408 |
jpm |
204 |
|
1922 |
jpm |
205 |
// Création du Geocoder
|
2697 |
mathias |
206 |
this.geocoder = new google.maps.Geocoder();
|
2701 |
mathias |
207 |
};
|
1054 |
jpm |
208 |
|
2708 |
mathias |
209 |
WidgetSaisieSauvages.prototype.surClickDansCarte = function(event) {
|
2736 |
mathias |
210 |
this.latLngDeb = event.latLng;
|
|
|
211 |
this.deplacerMarkerDeb(this.latLngDeb);
|
2708 |
mathias |
212 |
};
|
|
|
213 |
|
2697 |
mathias |
214 |
// surcharge
|
|
|
215 |
WidgetSaisieSauvages.prototype.prechargerForm = function(data) {
|
2256 |
aurelien |
216 |
|
|
|
217 |
$('#carte-recherche').val(data.zoneGeo);
|
|
|
218 |
$('#commune-nom').text(data.zoneGeo);
|
2408 |
jpm |
219 |
|
2257 |
aurelien |
220 |
if(data.hasOwnProperty("codeZoneGeo")) {
|
|
|
221 |
$('#commune-code-insee').text(data.codeZoneGeo.replace('INSEE-C:', ''));
|
|
|
222 |
}
|
2408 |
jpm |
223 |
|
2697 |
mathias |
224 |
var pos = new google.maps.LatLng(data.latitude, data.longitude);
|
2408 |
jpm |
225 |
|
2256 |
aurelien |
226 |
if(data.hasOwnProperty("extension")) {
|
|
|
227 |
// cas des obs florilèges qui apparaissent aussi comme des obs sauvages
|
|
|
228 |
// mais qui n'ont pas de coté de rue
|
|
|
229 |
if(data.extension.hasOwnProperty("coteRue")) {
|
|
|
230 |
$('#rue_cote option[value='+data.extension.coteRue.valeur+']').attr("selected", "selected");
|
|
|
231 |
}
|
2408 |
jpm |
232 |
|
2697 |
mathias |
233 |
var deb = new google.maps.LatLng(data.extension.latitudeDebutRue.valeur, data.extension.longitudeDebutRue.valeur);
|
|
|
234 |
var fin = new google.maps.LatLng(data.extension.latitudeFinRue.valeur, data.extension.longitudeFinRue.valeur);
|
2758 |
aurelien |
235 |
|
2708 |
mathias |
236 |
this.mettreAJourMarkerPosition(pos);
|
2408 |
jpm |
237 |
|
2758 |
aurelien |
238 |
this.latLngDeb = deb;
|
|
|
239 |
this.initialiserMarkerDebSimple();
|
|
|
240 |
|
|
|
241 |
this.latLngFin = fin;
|
|
|
242 |
this.initialiserMarkerFin(fin);
|
|
|
243 |
|
|
|
244 |
this.rechercherRue();
|
2408 |
jpm |
245 |
|
2256 |
aurelien |
246 |
var latlngbounds = new google.maps.LatLngBounds();
|
|
|
247 |
latlngbounds.extend(deb);
|
|
|
248 |
latlngbounds.extend(fin);
|
2697 |
mathias |
249 |
this.map.setCenter(latlngbounds.getCenter());
|
|
|
250 |
this.map.fitBounds(latlngbounds);
|
2256 |
aurelien |
251 |
} else if(data.hasOwnProperty("latitude") && data.hasOwnProperty("longitude")) {
|
2697 |
mathias |
252 |
this.deplacerMarkerDeb(pos);
|
2256 |
aurelien |
253 |
}
|
2701 |
mathias |
254 |
};
|
2256 |
aurelien |
255 |
|
2758 |
aurelien |
256 |
WidgetSaisieSauvages.prototype.initialiserMarkerDebSimple = function() {
|
|
|
257 |
this.premierDeplacement = true;
|
|
|
258 |
if (this.markerDeb == undefined) {
|
|
|
259 |
// Marqueur de début de Rue
|
|
|
260 |
this.markerDeb = new google.maps.Marker({
|
|
|
261 |
map: this.map,
|
|
|
262 |
draggable: true,
|
|
|
263 |
title: 'Début de la portion de rue étudiée',
|
|
|
264 |
icon: this.googleMapMarqueurDebutUrl,
|
|
|
265 |
position: this.latLngDeb
|
|
|
266 |
});
|
|
|
267 |
google.maps.event.addListener(this.markerDeb, 'dragend', this.surDeplacementMarkerDeb.bind(this));
|
|
|
268 |
}
|
|
|
269 |
}
|
|
|
270 |
|
|
|
271 |
|
2697 |
mathias |
272 |
WidgetSaisieSauvages.prototype.initialiserMarkerDeb = function() {
|
|
|
273 |
this.premierDeplacement = true;
|
|
|
274 |
if (this.markerDeb == undefined) {
|
1922 |
jpm |
275 |
// Marqueur de début de Rue
|
2697 |
mathias |
276 |
this.markerDeb = new google.maps.Marker({
|
|
|
277 |
map: this.map,
|
1922 |
jpm |
278 |
draggable: true,
|
|
|
279 |
title: 'Début de la portion de rue étudiée',
|
2700 |
mathias |
280 |
icon: this.googleMapMarqueurDebutUrl,
|
2697 |
mathias |
281 |
position: this.latLngDeb
|
1922 |
jpm |
282 |
});
|
2697 |
mathias |
283 |
google.maps.event.addListener(this.markerDeb, 'dragend', this.surDeplacementMarkerDeb.bind(this));
|
1922 |
jpm |
284 |
}
|
2408 |
jpm |
285 |
|
2697 |
mathias |
286 |
this.latLngFin = this.latLngDeb;
|
|
|
287 |
if (this.markerFin != undefined) {
|
|
|
288 |
this.markerFin.setMap(null);
|
1922 |
jpm |
289 |
}
|
2697 |
mathias |
290 |
this.latLngCentre = this.latLngDeb;
|
|
|
291 |
if (this.ligneRue != undefined) {
|
|
|
292 |
this.ligneRue.setMap(null);
|
1922 |
jpm |
293 |
}
|
2701 |
mathias |
294 |
};
|
1346 |
aurelien |
295 |
|
2697 |
mathias |
296 |
WidgetSaisieSauvages.prototype.surDeplacementMarkerDeb = function() {
|
2758 |
aurelien |
297 |
// Annulation d'une éventuelle recherche de rue déjà en cours
|
|
|
298 |
this.annulerRechercherRue();
|
2736 |
mathias |
299 |
this.latLngDeb = this.markerDeb.getPosition();
|
|
|
300 |
this.deplacerMarkerDeb(this.latLngDeb);
|
2701 |
mathias |
301 |
};
|
1346 |
aurelien |
302 |
|
2697 |
mathias |
303 |
WidgetSaisieSauvages.prototype.deplacerMarkerDeb = function(nouvellePosition) {
|
2748 |
aurelien |
304 |
|
2697 |
mathias |
305 |
this.latLngDeb = nouvellePosition;
|
2758 |
aurelien |
306 |
if (this.markerDeb == undefined) {
|
|
|
307 |
// Marqueur de début de Rue
|
|
|
308 |
this.markerDeb = new google.maps.Marker({
|
|
|
309 |
map: this.map,
|
|
|
310 |
draggable: true,
|
|
|
311 |
title: 'Début de la portion de rue étudiée',
|
|
|
312 |
icon: this.googleMapMarqueurDebutUrl,
|
|
|
313 |
position: this.latLngDeb
|
|
|
314 |
});
|
|
|
315 |
google.maps.event.addListener(this.markerDeb, 'dragend', this.surDeplacementMarkerDeb.bind(this));
|
|
|
316 |
}
|
2697 |
mathias |
317 |
this.markerDeb.setPosition(this.latLngDeb);
|
|
|
318 |
this.map.setCenter(this.latLngDeb);
|
2708 |
mathias |
319 |
this.mettreAJourMarkerPosition(this.latLngDeb);
|
2697 |
mathias |
320 |
this.trouverCommune(this.latLngDeb);
|
1922 |
jpm |
321 |
|
2744 |
aurelien |
322 |
var nouvellePositionFin = new google.maps.LatLng(this.latLngDeb.lat(), this.latLngDeb.lng() + 0.0010);
|
|
|
323 |
this.initialiserMarkerFin();
|
2758 |
aurelien |
324 |
this.deplacerMarkerFin(nouvellePositionFin);
|
2744 |
aurelien |
325 |
this.afficherEtapeGeolocalisation(3);
|
2701 |
mathias |
326 |
};
|
1346 |
aurelien |
327 |
|
2697 |
mathias |
328 |
WidgetSaisieSauvages.prototype.initialiserMarkerFin = function() {
|
|
|
329 |
if (this.markerFin == undefined) {
|
|
|
330 |
this.markerFin = new google.maps.Marker({
|
|
|
331 |
map: this.map,
|
1922 |
jpm |
332 |
draggable: true,
|
|
|
333 |
title: 'Fin de la portion de rue étudiée',
|
2700 |
mathias |
334 |
icon: this.googleMapMarqueurFinUrl,
|
2697 |
mathias |
335 |
position: this.latLngFin
|
1922 |
jpm |
336 |
});
|
2697 |
mathias |
337 |
google.maps.event.addListener(this.markerFin, 'dragend', this.surDeplacementMarkerFin.bind(this));
|
1346 |
aurelien |
338 |
}
|
2701 |
mathias |
339 |
};
|
1346 |
aurelien |
340 |
|
2697 |
mathias |
341 |
WidgetSaisieSauvages.prototype.deplacerMarkerFin = function(nouvellePosition) {
|
|
|
342 |
this.latLngFin = nouvellePosition;
|
|
|
343 |
this.markerFin.setMap(this.map);
|
|
|
344 |
this.markerFin.setPosition(this.latLngFin);
|
|
|
345 |
this.dessinerLigneRue(this.latLngDeb, this.latLngFin);
|
2701 |
mathias |
346 |
};
|
1922 |
jpm |
347 |
|
2697 |
mathias |
348 |
WidgetSaisieSauvages.prototype.surDeplacementMarkerFin = function() {
|
2748 |
aurelien |
349 |
// Annulation d'une éventuelle recherche déjà en cours
|
|
|
350 |
this.annulerRechercherRue();
|
2744 |
aurelien |
351 |
this.rechercherRue();
|
|
|
352 |
};
|
|
|
353 |
|
|
|
354 |
WidgetSaisieSauvages.prototype.surClicRueSuivantPrecedent = function(event) {
|
|
|
355 |
event.preventDefault();
|
|
|
356 |
if($(event.target).hasClass("navigation-rue-suivant")) {
|
|
|
357 |
this.indexRueSelectionnee = this.indexRueSelectionnee < this.listeRues.length - 1 ? this.indexRueSelectionnee + 1 : 0;
|
|
|
358 |
} else {
|
|
|
359 |
this.indexRueSelectionnee = this.indexRueSelectionnee > 0 ? this.indexRueSelectionnee - 1 : this.listeRues.length - 1;
|
|
|
360 |
}
|
|
|
361 |
this.mettreRueEnValeur(this.listeRues[this.indexRueSelectionnee]);
|
|
|
362 |
}
|
|
|
363 |
|
|
|
364 |
WidgetSaisieSauvages.prototype.afficherChargementRechercheRue = function() {
|
2758 |
aurelien |
365 |
if(!!this.ligneRue) {
|
|
|
366 |
this.ligneRue.setMap(null);
|
|
|
367 |
}
|
2744 |
aurelien |
368 |
var img = '<img src="'+this.chargementImageIconeUrl+'" />';
|
|
|
369 |
$('#indication-nom-rue-nom').html(img+" Recherche de la rue en cours");
|
|
|
370 |
$('#indication-nom-rue').css('visibility','visible');
|
|
|
371 |
$('#indication-nom-rue').effect("highlight", {}, 500);
|
|
|
372 |
$(".navigation-rue").toggle(false);
|
|
|
373 |
}
|
|
|
374 |
|
|
|
375 |
WidgetSaisieSauvages.prototype.rechercherRue = function() {
|
|
|
376 |
this.afficherChargementRechercheRue();
|
|
|
377 |
|
|
|
378 |
var params = "latitude_debut="+this.markerDeb.getPosition().lat()+"&longitude_debut="+this.markerDeb.getPosition().lng()+
|
|
|
379 |
"&latitude_fin="+this.markerFin.getPosition().lat()+"&longitude_fin="+this.markerFin.getPosition().lng();
|
|
|
380 |
var lthis = this;
|
|
|
381 |
|
2748 |
aurelien |
382 |
this.requeteRechercheRue = $.getJSON(this.serviceTraceRueUrl+'?'+params, function(data) {
|
2744 |
aurelien |
383 |
$('#indication-nom-rue-nom').html("");
|
|
|
384 |
lthis.listeRues = data.elements;
|
|
|
385 |
var coordDeb = {"lat" : lthis.markerDeb.getPosition().lat(), "lon" : lthis.markerDeb.getPosition().lng()};
|
|
|
386 |
var coordFin = {"lat" : lthis.markerFin.getPosition().lat(), "lon" : lthis.markerFin.getPosition().lng()};
|
2748 |
aurelien |
387 |
var tags = {"name" : lthis.aucuneRueSelectionnee};
|
2744 |
aurelien |
388 |
var pasDeRue = {"geometry" : [coordDeb, coordFin], "tags" : tags};
|
|
|
389 |
lthis.listeRues.push(pasDeRue);
|
|
|
390 |
lthis.indexRueSelectionnee = 0;
|
|
|
391 |
lthis.mettreRueEnValeur(lthis.listeRues[0]);
|
|
|
392 |
});
|
|
|
393 |
}
|
|
|
394 |
|
2748 |
aurelien |
395 |
WidgetSaisieSauvages.prototype.annulerRechercherRue = function() {
|
|
|
396 |
if(this.requeteRechercheRue != null) {
|
|
|
397 |
this.requeteRechercheRue.abort();
|
|
|
398 |
this.requeteRechercheRue = null;
|
|
|
399 |
$('#indication-nom-rue').css('visibility','hidden');
|
|
|
400 |
}
|
|
|
401 |
}
|
|
|
402 |
|
|
|
403 |
|
2744 |
aurelien |
404 |
WidgetSaisieSauvages.prototype.mettreRueEnValeur = function(rue) {
|
|
|
405 |
this.afficherIndicationRue(rue['tags']['name']);
|
|
|
406 |
this.afficherTraceRue(rue['geometry']);
|
2697 |
mathias |
407 |
this.afficherEtapeGeolocalisation(4);
|
2744 |
aurelien |
408 |
}
|
|
|
409 |
|
|
|
410 |
WidgetSaisieSauvages.prototype.afficherIndicationRue = function(indication) {
|
2748 |
aurelien |
411 |
indication = !!indication ? indication : this.nomDeRueInconnue;
|
2744 |
aurelien |
412 |
$('#indication-nom-rue-nom').html(indication);
|
|
|
413 |
$('#indication-nom-rue').css('visibility','visible');
|
|
|
414 |
$('#indication-nom-rue').effect("highlight", {}, 500);
|
|
|
415 |
$(".navigation-rue").toggle(this.listeRues.length > 1);
|
|
|
416 |
}
|
|
|
417 |
|
|
|
418 |
WidgetSaisieSauvages.prototype.afficherTraceRue = function(rue) {
|
|
|
419 |
|
|
|
420 |
if (this.ligneRue != undefined) {
|
|
|
421 |
this.ligneRue.setMap(null);
|
|
|
422 |
}
|
|
|
423 |
|
|
|
424 |
var cheminRue = new Array();
|
|
|
425 |
if(rue.length > 0) {
|
|
|
426 |
$.each(rue, function(index, value) {
|
|
|
427 |
cheminRue.push(new google.maps.LatLng(value['lat'], value['lon']));
|
|
|
428 |
});
|
|
|
429 |
|
|
|
430 |
this.ligneRue = new google.maps.Polyline({
|
|
|
431 |
path: cheminRue,
|
|
|
432 |
strokeColor: "#FF0000",
|
|
|
433 |
strokeOpacity: 1.0,
|
|
|
434 |
strokeWeight: 2
|
|
|
435 |
});
|
|
|
436 |
|
|
|
437 |
this.ligneRue.setMap(this.map);
|
|
|
438 |
}
|
2701 |
mathias |
439 |
};
|
1922 |
jpm |
440 |
|
2697 |
mathias |
441 |
WidgetSaisieSauvages.prototype.dessinerLigneRue = function(pointDebut, pointFin) {
|
|
|
442 |
if (this.ligneRue != undefined) {
|
|
|
443 |
this.ligneRue.setMap(null);
|
1346 |
aurelien |
444 |
}
|
2408 |
jpm |
445 |
|
2697 |
mathias |
446 |
this.ligneRue = new google.maps.Polyline({
|
1922 |
jpm |
447 |
path: [pointDebut, pointFin],
|
|
|
448 |
strokeColor: "#FF0000",
|
|
|
449 |
strokeOpacity: 1.0,
|
|
|
450 |
strokeWeight: 2
|
|
|
451 |
});
|
1346 |
aurelien |
452 |
|
2697 |
mathias |
453 |
this.ligneRue.setMap(this.map);
|
2701 |
mathias |
454 |
};
|
1346 |
aurelien |
455 |
|
2697 |
mathias |
456 |
WidgetSaisieSauvages.prototype.afficherCentreRue = function() {
|
|
|
457 |
this.latLngDeb = this.markerDeb.getPosition();
|
|
|
458 |
this.latLngFin = this.markerFin.getPosition();
|
|
|
459 |
this.latLngCentre = new google.maps.LatLng((this.latLngFin.lat() + this.latLngDeb.lat())/2, (this.latLngFin.lng() + this.latLngDeb.lng())/2);
|
2708 |
mathias |
460 |
this.mettreAJourMarkerPosition(this.latLngCentre);
|
2701 |
mathias |
461 |
};
|
1922 |
jpm |
462 |
|
2697 |
mathias |
463 |
WidgetSaisieSauvages.prototype.afficherEtapeGeolocalisation = function(numEtape) {
|
1922 |
jpm |
464 |
$('.liste_indication_geolocalisation').children().hide();
|
|
|
465 |
$('.liste_indication_geolocalisation :nth-child('+numEtape+')').show();
|
2701 |
mathias |
466 |
};
|
1922 |
jpm |
467 |
|
2697 |
mathias |
468 |
// surcharge
|
|
|
469 |
WidgetSaisieSauvages.prototype.geolocaliser = function(event) {
|
1922 |
jpm |
470 |
var latitude = $('#latitude').val(),
|
|
|
471 |
longitude = $('#longitude').val(),
|
|
|
472 |
nouvellePosition = new google.maps.LatLng(latitude, longitude);
|
2697 |
mathias |
473 |
this.initialiserMarkerDeb();
|
|
|
474 |
this.deplacerMarkerDeb(nouvellePosition);
|
|
|
475 |
this.afficherEtapeGeolocalisation(2);
|
|
|
476 |
this.map.setZoom(16);
|
1922 |
jpm |
477 |
arreter(event);
|
2701 |
mathias |
478 |
};
|
1922 |
jpm |
479 |
|
2697 |
mathias |
480 |
WidgetSaisieSauvages.prototype.tenterGeolocalisation = function() {
|
2715 |
mathias |
481 |
var lthis = this;
|
1922 |
jpm |
482 |
if (navigator.geolocation) {
|
|
|
483 |
navigator.geolocation.getCurrentPosition(function(position) {
|
|
|
484 |
var latitude = position.coords.latitude,
|
|
|
485 |
longitude = position.coords.longitude,
|
|
|
486 |
nouvellePosition = new google.maps.LatLng(latitude, longitude);
|
2715 |
mathias |
487 |
lthis.initialiserMarkerDeb();
|
|
|
488 |
lthis.deplacerMarkerDeb(nouvellePosition);
|
|
|
489 |
lthis.map.setZoom(16);
|
1922 |
jpm |
490 |
});
|
2758 |
aurelien |
491 |
} else {
|
|
|
492 |
lthis.initialiserMarkerDeb();
|
1922 |
jpm |
493 |
}
|
2701 |
mathias |
494 |
};
|
1922 |
jpm |
495 |
|
2697 |
mathias |
496 |
/**
|
|
|
497 |
* AUTO-COMPLÉTION Noms Scientifiques => OK
|
|
|
498 |
* sélectionne un nom et puis qu'on le remplacer par un nom non valide
|
|
|
499 |
* Garder la trace de la valeur permet de vider le nn lorsqu'on
|
|
|
500 |
*/
|
|
|
501 |
WidgetSaisieSauvages.prototype.ajouterAutocompletionNoms = function() {
|
|
|
502 |
var lthis = this;
|
1922 |
jpm |
503 |
$('#taxon').autocomplete({
|
2408 |
jpm |
504 |
source: function(requete, add){
|
1922 |
jpm |
505 |
// la variable de requête doit être vidée car sinon le parametre "term" est ajouté
|
2408 |
jpm |
506 |
|
2697 |
mathias |
507 |
var url = lthis.getUrlAutocompletionNomsSci();
|
1922 |
jpm |
508 |
$.getJSON(url, function(data) {
|
2697 |
mathias |
509 |
var suggestions = lthis.traiterRetourNomsSci(data);
|
2408 |
jpm |
510 |
add(suggestions);
|
1922 |
jpm |
511 |
});
|
|
|
512 |
},
|
|
|
513 |
html: true
|
|
|
514 |
});
|
2408 |
jpm |
515 |
|
1922 |
jpm |
516 |
$('#taxon').bind('autocompleteselect', function(event, ui) {
|
|
|
517 |
$('#taxon').data(ui.item);
|
2697 |
mathias |
518 |
lthis.valeurChamp = $('#taxon').val();
|
1922 |
jpm |
519 |
if (ui.item.retenu == true) {
|
|
|
520 |
$('#taxon').addClass('ns-retenu');
|
|
|
521 |
} else {
|
|
|
522 |
$('#taxon').removeClass('ns-retenu');
|
|
|
523 |
}
|
|
|
524 |
});
|
2529 |
aurelien |
525 |
|
|
|
526 |
$('#taxon').bind('keypress', function() {
|
2697 |
mathias |
527 |
if(lthis.valeurChamp != $('#taxon').val()) {
|
2529 |
aurelien |
528 |
$('#taxon').data('numNomSel', '');
|
|
|
529 |
}
|
2697 |
mathias |
530 |
lthis.valeurChamp = $('#taxon').val();
|
2529 |
aurelien |
531 |
});
|
2701 |
mathias |
532 |
};
|
1922 |
jpm |
533 |
|
2697 |
mathias |
534 |
WidgetSaisieSauvages.prototype.getUrlAutocompletionNomsSci = function() {
|
1922 |
jpm |
535 |
var mots = $('#taxon').val(),
|
2700 |
mathias |
536 |
url = this.serviceAutocompletionNomSciUrlTpl.replace('{referentiel}', this.nomSciReferentiel);
|
1922 |
jpm |
537 |
url = url.replace('{masque}', mots);
|
|
|
538 |
return url;
|
2701 |
mathias |
539 |
};
|
1922 |
jpm |
540 |
|
2697 |
mathias |
541 |
WidgetSaisieSauvages.prototype.traiterRetourNomsSci = function(data) {
|
1922 |
jpm |
542 |
var suggestions = [];
|
|
|
543 |
if (data.resultat != undefined) {
|
|
|
544 |
$.each(data.resultat, function(i, val) {
|
|
|
545 |
val.nn = i;
|
|
|
546 |
var nom = {label: '', value: '', nt: '', nomSel: '', nomSelComplet: '', numNomSel: '',
|
|
|
547 |
nomRet: '', numNomRet: '', famille: '', retenu: false
|
|
|
548 |
};
|
2700 |
mathias |
549 |
if (suggestions.length >= this.autocompletionElementsNbre) {
|
1922 |
jpm |
550 |
nom.label = '...';
|
|
|
551 |
nom.value = $('#taxon').val();
|
|
|
552 |
suggestions.push(nom);
|
|
|
553 |
return false;
|
|
|
554 |
} else {
|
|
|
555 |
nom.label = val.nom_sci_complet;
|
|
|
556 |
nom.value = val.nom_sci_complet;
|
|
|
557 |
nom.nt = val.num_taxonomique;
|
|
|
558 |
nom.nomSel = val.nom_sci;
|
|
|
559 |
nom.nomSelComplet = val.nom_sci_complet;
|
|
|
560 |
nom.numNomSel = val.nn;
|
|
|
561 |
nom.nomRet = val.nom_retenu_complet;
|
|
|
562 |
nom.numNomRet = val['nom_retenu.id'];
|
|
|
563 |
nom.famille = val.famille;
|
|
|
564 |
nom.retenu = (val.retenu == 'false') ? false : true;
|
2408 |
jpm |
565 |
|
1922 |
jpm |
566 |
suggestions.push(nom);
|
|
|
567 |
}
|
|
|
568 |
});
|
|
|
569 |
}
|
|
|
570 |
return suggestions;
|
2701 |
mathias |
571 |
};
|
1922 |
jpm |
572 |
|
2697 |
mathias |
573 |
// surcharge
|
|
|
574 |
WidgetSaisieSauvages.prototype.configurerFormValidator = function() {
|
1916 |
jpm |
575 |
$.validator.addMethod(
|
2408 |
jpm |
576 |
'dateCel',
|
|
|
577 |
function (value, element) {
|
|
|
578 |
return value == '' || (/^[0-9]{2}[-\/][0-9]{2}[-\/][0-9]{4}$/.test(value));
|
|
|
579 |
},
|
1916 |
jpm |
580 |
'Format : jj/mm/aaaa. Date incomplète, utiliser 0, exemple : 00/12/2011.');
|
2408 |
jpm |
581 |
|
1916 |
jpm |
582 |
$.extend($.validator.defaults, {
|
|
|
583 |
ignore: [],// Forcer Jquery Validate à examiner les éléments avec en display:none;
|
|
|
584 |
highlight: function(element) {
|
|
|
585 |
$(element).closest('.control-group').removeClass('success').addClass('error');
|
|
|
586 |
},
|
|
|
587 |
success: function(element) {
|
|
|
588 |
element.text('OK!').addClass('valid');
|
|
|
589 |
element.closest('.control-group').removeClass('error').addClass('success');
|
2408 |
jpm |
590 |
|
1916 |
jpm |
591 |
if (element.attr('id') == 'taxon' && $('#taxon').val() != '') {
|
|
|
592 |
// Si le taxon n'est pas lié au référentiel, on vide le data associé
|
|
|
593 |
if ($('#taxon').data('value') != $('#taxon').val()) {
|
|
|
594 |
$('#taxon').data('numNomSel', '');
|
|
|
595 |
$('#taxon').data('nomRet', '');
|
|
|
596 |
$('#taxon').data('numNomRet', '');
|
|
|
597 |
$('#taxon').data('nt', '');
|
|
|
598 |
$('#taxon').data('famille', '');
|
|
|
599 |
}
|
|
|
600 |
}
|
|
|
601 |
}
|
|
|
602 |
});
|
2701 |
mathias |
603 |
};
|
1916 |
jpm |
604 |
|
2697 |
mathias |
605 |
// surcharge
|
|
|
606 |
WidgetSaisieSauvages.prototype.definirReglesFormValidator = function() {
|
1916 |
jpm |
607 |
$('#form-observateur').validate({
|
|
|
608 |
rules: {
|
|
|
609 |
courriel: {
|
|
|
610 |
required: true,
|
|
|
611 |
email: true},
|
|
|
612 |
courriel_confirmation: {
|
|
|
613 |
required: true,
|
|
|
614 |
equalTo: '#courriel'},
|
|
|
615 |
prenom: {
|
|
|
616 |
required: true},
|
|
|
617 |
nom: {
|
|
|
618 |
required: true}
|
|
|
619 |
}
|
|
|
620 |
});
|
|
|
621 |
$('#form-obs').validate({
|
|
|
622 |
rules: {
|
|
|
623 |
station: {
|
|
|
624 |
required: true},
|
|
|
625 |
latitude : {
|
|
|
626 |
required: true,
|
|
|
627 |
range: [-90, 90]},
|
|
|
628 |
longitude: {
|
|
|
629 |
required: true,
|
|
|
630 |
range: [-180, 180]},
|
|
|
631 |
date: {
|
|
|
632 |
required: true,
|
|
|
633 |
'dateCel' : true},
|
1956 |
jpm |
634 |
coteRue: {
|
1916 |
jpm |
635 |
required: true},
|
|
|
636 |
'taxon-liste': {
|
|
|
637 |
required: true},
|
|
|
638 |
'milieux[]': {
|
|
|
639 |
required: true,
|
|
|
640 |
minlength: 1}
|
|
|
641 |
},
|
|
|
642 |
errorPlacement: function(error, element) {
|
|
|
643 |
if (element.attr('name') == 'date') {
|
|
|
644 |
element.parent('.input-prepend').after(error);
|
|
|
645 |
} else if (element.attr('name') == 'milieux[]') {
|
|
|
646 |
error.insertAfter('#milieux-controls');
|
|
|
647 |
} else {
|
|
|
648 |
error.insertAfter(element);
|
|
|
649 |
}
|
|
|
650 |
},
|
|
|
651 |
messages: {
|
|
|
652 |
'milieu[]': 'Vous devez sélectionner au moins un milieu'
|
|
|
653 |
}
|
|
|
654 |
});
|
2701 |
mathias |
655 |
};
|
1916 |
jpm |
656 |
|
2697 |
mathias |
657 |
WidgetSaisieSauvages.prototype.validerFormulaire = function() {
|
1946 |
jpm |
658 |
var observateur = $('#form-observateur').valid(),
|
|
|
659 |
obs = $('#form-obs').valid(),
|
2697 |
mathias |
660 |
debRue = (this.latLngDeb == undefined || this.latLngDeb == this.latLngFin) ? false : true,
|
|
|
661 |
finRue = (this.latLngFin == undefined || this.latLngDeb == this.latLngFin) ? false : true;
|
1946 |
jpm |
662 |
var ok = (observateur && obs && debRue && finRue) ? true : false;
|
1964 |
jpm |
663 |
//console.log('observateur:'+observateur+'-obs:'+obs+'-debRue:'+debRue+'('+latLngDeb+')-finRue:'+finRue+'('+latLngDeb+')');
|
1946 |
jpm |
664 |
return ok;
|
2701 |
mathias |
665 |
};
|
1946 |
jpm |
666 |
|
2697 |
mathias |
667 |
WidgetSaisieSauvages.prototype.surChangementTaxonListe = function() {
|
1916 |
jpm |
668 |
if ($('#taxon-liste').val() === '?') {
|
|
|
669 |
$('#taxon-input-groupe').removeClass('hidden');
|
|
|
670 |
} else {
|
|
|
671 |
$('#taxon-input-groupe').addClass('hidden');
|
|
|
672 |
}
|
2701 |
mathias |
673 |
};
|
1916 |
jpm |
674 |
|
2697 |
mathias |
675 |
WidgetSaisieSauvages.prototype.surChangementValeurTaxon = function() {
|
2529 |
aurelien |
676 |
var nomHorsListe = $('#taxon-liste').val() == '?' ? true : false;
|
2697 |
mathias |
677 |
var nomSpecial = $('#taxon-liste option:selected').hasClass('nom-special');
|
|
|
678 |
var numNomSel = nomHorsListe ? $('#taxon').data('numNomSel') : $('#taxon-liste').val();
|
2529 |
aurelien |
679 |
|
|
|
680 |
// Un nom non valide entraine automatiquement une certitude "à déterminer"
|
|
|
681 |
if(nomSpecial || !numNomSel) {
|
|
|
682 |
$('#certitude-adeterminer').attr('checked', 'checked');
|
|
|
683 |
} else {
|
|
|
684 |
$('#certitude-adeterminer').removeAttr('checked');
|
|
|
685 |
}
|
2701 |
mathias |
686 |
};
|
2529 |
aurelien |
687 |
|
2697 |
mathias |
688 |
// surcharge
|
|
|
689 |
WidgetSaisieSauvages.prototype.ajouterObs = function() {
|
|
|
690 |
if (this.validerFormulaire() == true) {
|
|
|
691 |
this.obsNbre = this.obsNbre + 1;
|
|
|
692 |
$('.obs-nbre').text(this.obsNbre);
|
1922 |
jpm |
693 |
$('.obs-nbre').triggerHandler('changement');
|
2697 |
mathias |
694 |
this.afficherObs();
|
|
|
695 |
this.stockerObsData();
|
|
|
696 |
this.supprimerMiniatures();
|
1922 |
jpm |
697 |
} else {
|
1956 |
jpm |
698 |
// Affichage de tous les panneau cachés avec champ obligatoire
|
2697 |
mathias |
699 |
var debRue = (this.latLngDeb == undefined || this.latLngDeb == this.latLngFin) ? false : true,
|
|
|
700 |
finRue = (this.latLngFin == undefined || this.latLngDeb == this.latLngFin) ? false : true;
|
1922 |
jpm |
701 |
if (debRue == false || finRue == false) {
|
2700 |
mathias |
702 |
this.afficherPanneau('#dialogue-form-invalide-rue');
|
1922 |
jpm |
703 |
} else {
|
2700 |
mathias |
704 |
this.afficherPanneau('#dialogue-form-invalide');
|
1922 |
jpm |
705 |
}
|
2697 |
mathias |
706 |
this.montrerFormIdentite();
|
1922 |
jpm |
707 |
}
|
2697 |
mathias |
708 |
};
|
1922 |
jpm |
709 |
|
2697 |
mathias |
710 |
// surcharge
|
|
|
711 |
WidgetSaisieSauvages.prototype.afficherObs = function() {
|
1922 |
jpm |
712 |
var numNomSel = ($('#taxon-liste').val() == '?') ? $('#taxon').data('numNomSel') : $('#taxon-liste').val(),
|
|
|
713 |
nomSpecial = $('#taxon-liste option:selected').hasClass('nom-special'),
|
|
|
714 |
taxon = ($('#taxon-liste').val() == '?') ? $('#taxon').val() : $('#taxon-liste option:selected').data('nom-a-sauver'),
|
2700 |
mathias |
715 |
referentiel = (numNomSel == undefined) ? '' : '['+ this.nomSciReferentiel +']',
|
1922 |
jpm |
716 |
commune = $('#commune-nom').text(),
|
|
|
717 |
codeInsee = $('#commune-code-insee').text(),
|
2748 |
aurelien |
718 |
station = this.getValeurStation(),
|
1922 |
jpm |
719 |
lat = $('input[name="latitude"]').val(),
|
|
|
720 |
lng = $('input[name="longitude"]').val(),
|
|
|
721 |
date = $('#date').val(),
|
2697 |
mathias |
722 |
milieux = this.getMilieux(),
|
|
|
723 |
notes = (nomSpecial ? this.taxons[numNomSel]['nom_fr'] + ".<br />" : '') + $('#notes').val();
|
2408 |
jpm |
724 |
|
1922 |
jpm |
725 |
$('#liste-obs').prepend(
|
2697 |
mathias |
726 |
'<div id="obs'+this.obsNbre+'" class="row-fluid obs obs'+this.obsNbre+'">' +
|
1946 |
jpm |
727 |
'<div class="span12">' +
|
|
|
728 |
'<div class="well">' +
|
|
|
729 |
'<div class="obs-action pull-right has-tooltip" data-placement="bottom" ' +
|
|
|
730 |
'title="Supprimer cette observation de la liste à transmettre">' +
|
2697 |
mathias |
731 |
'<button class="btn btn-danger supprimer-obs" value="'+this.obsNbre+'" title="'+this.obsNbre+'">' +
|
1946 |
jpm |
732 |
'<i class="icon-trash icon-white"></i>' +
|
|
|
733 |
'</button>' +
|
2408 |
jpm |
734 |
'</div> ' +
|
|
|
735 |
'<div class="row-fluid">' +
|
1946 |
jpm |
736 |
'<div class="span2 obs-miniatures">' +
|
2697 |
mathias |
737 |
this.ajouterImgMiniatureAuTransfert() +
|
1922 |
jpm |
738 |
'</div>'+
|
1946 |
jpm |
739 |
'<div class="span7">' +
|
|
|
740 |
'<ul class="unstyled">' +
|
1922 |
jpm |
741 |
'<li>'+
|
|
|
742 |
'<span class="nom-sci">' + taxon + '</span> ' +
|
2697 |
mathias |
743 |
this.formaterNumNomSel(numNomSel) +
|
1946 |
jpm |
744 |
' observé à <br />' +
|
1993 |
jpm |
745 |
'<span class="commune">' + commune + '</span> ' +
|
|
|
746 |
'(' + codeInsee + '), ' +
|
1946 |
jpm |
747 |
'<span class="station">' + station + '</span><br /> ' +
|
1922 |
jpm |
748 |
' le ' +
|
|
|
749 |
'<span class="date">' + date + '</span>' +
|
|
|
750 |
'</li>' +
|
|
|
751 |
'<li>' +
|
1946 |
jpm |
752 |
'Milieux : ' + milieux + ' ' + ' ; ' +
|
1922 |
jpm |
753 |
'</li>' +
|
|
|
754 |
'<li>' +
|
2408 |
jpm |
755 |
'Notes : ' + notes +
|
1946 |
jpm |
756 |
'</li>' +
|
|
|
757 |
'</ul>' +
|
|
|
758 |
'</div>' +
|
|
|
759 |
'</div>' +
|
|
|
760 |
'</div>' +
|
1922 |
jpm |
761 |
'</div>'+
|
|
|
762 |
'</div>');
|
2697 |
mathias |
763 |
$('#zone-liste-obs').removeClass("hidden");
|
|
|
764 |
};
|
1922 |
jpm |
765 |
|
2748 |
aurelien |
766 |
WidgetSaisieSauvages.prototype.getValeurStation = function() {
|
|
|
767 |
var station = "";
|
|
|
768 |
var valeurSelectionnee = $("#indication-nom-rue-nom").text().trim();
|
|
|
769 |
if(valeurSelectionnee == this.aucuneRueSelectionnee || valeurSelectionnee == this.nomDeRueInconnue) {
|
|
|
770 |
station = $('input[name="adresse"]').val().trim()
|
|
|
771 |
} else {
|
|
|
772 |
station = $("#indication-nom-rue-nom").text().trim();
|
|
|
773 |
}
|
|
|
774 |
|
|
|
775 |
return station;
|
|
|
776 |
}
|
|
|
777 |
|
2697 |
mathias |
778 |
WidgetSaisieSauvages.prototype.getMilieux = function() {
|
1922 |
jpm |
779 |
var milieuxStr = '',
|
|
|
780 |
milieux = [];
|
|
|
781 |
$('.cb-milieux:checked').each(function() {
|
|
|
782 |
milieux.push($(this).val());
|
|
|
783 |
});
|
2408 |
jpm |
784 |
|
1922 |
jpm |
785 |
milieuxStr = Array.prototype.slice.call(milieux).join(', ');
|
|
|
786 |
return milieuxStr;
|
2697 |
mathias |
787 |
};
|
1922 |
jpm |
788 |
|
2697 |
mathias |
789 |
WidgetSaisieSauvages.prototype.ajouterImgMiniatureAuTransfert = function() {
|
1922 |
jpm |
790 |
var html = '',
|
|
|
791 |
miniatures = '',
|
|
|
792 |
indicateurs = '',
|
|
|
793 |
premiere = true,
|
|
|
794 |
numero = 1;
|
|
|
795 |
if ($('#miniatures img').length == 0) {
|
2700 |
mathias |
796 |
html = '<img class="miniature" alt="Aucune photo"src="'+ this.pasDePhotoIconeUrl +'" />';
|
1922 |
jpm |
797 |
} else if ($('#miniatures img').length >= 1) {
|
|
|
798 |
$('#miniatures img').each(function() {
|
|
|
799 |
var visible = premiere ? 'miniature-selectionnee' : 'miniature-cachee',
|
|
|
800 |
css = $(this).hasClass('b64') ? 'miniature b64' : 'miniature',
|
|
|
801 |
src = $(this).attr('src'),
|
|
|
802 |
alt = $(this).attr('alt');
|
2408 |
jpm |
803 |
|
1922 |
jpm |
804 |
var miniature = '<img class="'+css+' '+visible+'" alt="'+alt+'"src="'+src+'" />';
|
|
|
805 |
miniatures += miniature;
|
2408 |
jpm |
806 |
|
1922 |
jpm |
807 |
var indicateurActif = premiere ? 'active' : '';
|
|
|
808 |
var indicateur = '<li class="' + indicateurActif + '" data-numero="' + numero++ + '"></li>';
|
|
|
809 |
indicateurs += indicateur;
|
2408 |
jpm |
810 |
|
1922 |
jpm |
811 |
premiere = false;
|
|
|
812 |
});
|
2408 |
jpm |
813 |
|
1922 |
jpm |
814 |
if ($('#miniatures img').length == 1) {
|
|
|
815 |
html = miniatures;
|
|
|
816 |
} else {
|
2408 |
jpm |
817 |
html =
|
1922 |
jpm |
818 |
'<div class="defilement">' +
|
|
|
819 |
miniatures +
|
|
|
820 |
'<a class="defilement-control-zone gauche">' +
|
|
|
821 |
' <span class="defilement-control gauche hidden"><</span>' +
|
|
|
822 |
'</a>' +
|
|
|
823 |
'<a class="defilement-control-zone droite">' +
|
|
|
824 |
' <span class="defilement-control droite hidden">></span>' +
|
|
|
825 |
'</a>' +
|
|
|
826 |
'<ol class="defilement-indicateurs">' + indicateurs + '</ol>' +
|
|
|
827 |
'</div>';
|
|
|
828 |
}
|
|
|
829 |
}
|
|
|
830 |
return html;
|
2697 |
mathias |
831 |
};
|
1922 |
jpm |
832 |
|
2697 |
mathias |
833 |
WidgetSaisieSauvages.prototype.defilerMiniatures = function(element) {
|
1922 |
jpm |
834 |
var miniatureSelectionne = element.siblings('img.miniature-selectionnee');
|
|
|
835 |
miniatureSelectionne.removeClass('miniature-selectionnee').addClass('miniature-cachee');
|
|
|
836 |
var miniatureAffichee = miniatureSelectionne;
|
2408 |
jpm |
837 |
|
1922 |
jpm |
838 |
var indicateurActif = element.parent().find('.defilement-indicateurs .active');
|
|
|
839 |
indicateurActif.removeClass('active');
|
2408 |
jpm |
840 |
|
1922 |
jpm |
841 |
if (element.hasClass('defilement-control-zone') && element.hasClass('gauche')) {
|
|
|
842 |
if (miniatureSelectionne.prev('.miniature').length != 0) {
|
|
|
843 |
miniatureAffichee = miniatureSelectionne.prev('.miniature');
|
|
|
844 |
indicateurActif.prev().addClass('active');
|
|
|
845 |
} else {
|
|
|
846 |
miniatureAffichee = miniatureSelectionne.siblings('.miniature').last();
|
|
|
847 |
indicateurActif.siblings().last().addClass('active');
|
|
|
848 |
}
|
|
|
849 |
} else {
|
|
|
850 |
if (miniatureSelectionne.next('.miniature').length != 0) {
|
|
|
851 |
miniatureAffichee = miniatureSelectionne.next('.miniature');
|
|
|
852 |
indicateurActif.next().addClass('active');
|
|
|
853 |
} else {
|
|
|
854 |
miniatureAffichee = miniatureSelectionne.siblings('.miniature').first();
|
|
|
855 |
indicateurActif.siblings().first().addClass('active');
|
|
|
856 |
}
|
|
|
857 |
}
|
|
|
858 |
miniatureAffichee.addClass('miniature-selectionnee').removeClass('miniature-cachee');
|
2701 |
mathias |
859 |
};
|
1922 |
jpm |
860 |
|
2697 |
mathias |
861 |
WidgetSaisieSauvages.prototype.formaterNumNomSel = function(numNomSel) {
|
1922 |
jpm |
862 |
var nn = '';
|
|
|
863 |
if (numNomSel == undefined) {
|
|
|
864 |
nn = '<span class="alert-error">[non lié au référentiel]</span>';
|
|
|
865 |
} else {
|
|
|
866 |
nn = '<span class="nn">[nn'+numNomSel+']</span>';
|
|
|
867 |
}
|
|
|
868 |
return nn;
|
2701 |
mathias |
869 |
};
|
1922 |
jpm |
870 |
|
2697 |
mathias |
871 |
// surcharge
|
|
|
872 |
WidgetSaisieSauvages.prototype.surChangementReferentiel = function() {
|
2700 |
mathias |
873 |
this.nomSciReferentiel = $('#referentiel').val();
|
1922 |
jpm |
874 |
$('#taxon').val('');
|
2701 |
mathias |
875 |
};
|
1922 |
jpm |
876 |
|
2697 |
mathias |
877 |
// surcharge
|
|
|
878 |
WidgetSaisieSauvages.prototype.stockerObsData = function() {
|
|
|
879 |
var lthis = this;
|
1922 |
jpm |
880 |
var nomHorsListe = $('#taxon-liste').val() == '?' ? true : false;
|
|
|
881 |
nomSpecial = $('#taxon-liste option:selected').hasClass('nom-special'),
|
2709 |
mathias |
882 |
numNomSel = nomHorsListe ? $('#taxon').data('numNomSel') : $('#taxon-liste').val();
|
|
|
883 |
var nomSel = nomHorsListe ? $('#taxon').val() : $('#taxon-liste option:selected').data('nom-a-sauver'),
|
2708 |
mathias |
884 |
nomRet = nomHorsListe ? $('#taxon').data('nomRet') : this.taxons[numNomSel]['nom_ret'],
|
|
|
885 |
numNomRet = nomHorsListe ? $('#taxon').data('numNomRet') : this.taxons[numNomSel]['num_nom_ret'],
|
|
|
886 |
numTaxon = nomHorsListe ? $('#taxon').data('nt') : this.taxons[numNomSel]['num_taxon'],
|
|
|
887 |
famille = nomHorsListe ? $('#taxon').data('famille') : this.taxons[numNomSel]['famille'],
|
2700 |
mathias |
888 |
referentiel = (numNomSel == undefined) ? '' : this.nomSciReferentiel,
|
2708 |
mathias |
889 |
notes = (nomSpecial ? this.taxons[numNomSel]['nom_fr'] + '. ' : '') + $('#notes').val();
|
2521 |
aurelien |
890 |
|
|
|
891 |
certitude = $('input[name=certitude]:checked').val();
|
|
|
892 |
certitude = (certitude == undefined) ? '' : certitude;
|
2408 |
jpm |
893 |
|
2697 |
mathias |
894 |
$('#liste-obs').data('obsId'+this.obsNbre, {
|
2408 |
jpm |
895 |
'date': $('#date').val(),
|
1922 |
jpm |
896 |
'notes': notes,
|
2408 |
jpm |
897 |
|
2748 |
aurelien |
898 |
'station': this.getValeurStation(),
|
1922 |
jpm |
899 |
'latitude': $('#latitude').val(),
|
|
|
900 |
'longitude': $('#longitude').val(),
|
|
|
901 |
'commune_nom': $('#commune-nom').text(),
|
|
|
902 |
'commune_code_insee': $('#commune-code-insee').text(),
|
2408 |
jpm |
903 |
|
1922 |
jpm |
904 |
'nom_sel': nomSel,
|
|
|
905 |
'num_nom_sel': numNomSel,
|
|
|
906 |
'nom_ret': nomRet,
|
|
|
907 |
'num_nom_ret': numNomRet,
|
|
|
908 |
'num_taxon': numTaxon,
|
|
|
909 |
'famille': famille,
|
|
|
910 |
'referentiel': referentiel,
|
2521 |
aurelien |
911 |
'certitude': certitude,
|
2697 |
mathias |
912 |
'milieu': lthis.getMilieux(),
|
2408 |
jpm |
913 |
|
1922 |
jpm |
914 |
// Ajout des champs images
|
2697 |
mathias |
915 |
'image_nom': lthis.getNomsImgsOriginales(),
|
2408 |
jpm |
916 |
|
1922 |
jpm |
917 |
// Ajout des champs étendus de l'obs
|
2697 |
mathias |
918 |
'obs_etendue': lthis.getObsChpEtendus()
|
1922 |
jpm |
919 |
});
|
2700 |
mathias |
920 |
if (this.debug) {
|
2697 |
mathias |
921 |
console.log($('#liste-obs').data('obsId'+this.obsNbre));
|
1964 |
jpm |
922 |
}
|
2701 |
mathias |
923 |
};
|
1922 |
jpm |
924 |
|
2697 |
mathias |
925 |
WidgetSaisieSauvages.prototype.getObsChpEtendus = function() {
|
1946 |
jpm |
926 |
var champs = [];
|
2697 |
mathias |
927 |
if (this.latLngDeb != undefined) {
|
|
|
928 |
var latitudeDebutRue = {cle: 'latitudeDebutRue', label: 'Latitude du début de la rue', valeur: this.latLngDeb.lat().toFixed(5)};
|
1922 |
jpm |
929 |
champs.push(latitudeDebutRue);
|
2697 |
mathias |
930 |
var longitudeDebutRue = {cle: 'longitudeDebutRue', label: 'Longitude du début de la rue', valeur: this.latLngDeb.lng().toFixed(5)};
|
1922 |
jpm |
931 |
champs.push(longitudeDebutRue);
|
|
|
932 |
}
|
2697 |
mathias |
933 |
if (this.latLngFin != undefined) {
|
|
|
934 |
var latitudeFinRue = {cle: 'latitudeFinRue', label: 'Latitude de fin de la rue', valeur: this.latLngFin.lat().toFixed(5)};
|
1922 |
jpm |
935 |
champs.push(latitudeFinRue);
|
2697 |
mathias |
936 |
var longitudeFinRue = {cle: 'longitudeFinRue', label: 'Longitude de fin de la rue', valeur: this.latLngFin.lng().toFixed(5)};
|
1922 |
jpm |
937 |
champs.push(longitudeFinRue);
|
|
|
938 |
}
|
2408 |
jpm |
939 |
|
1922 |
jpm |
940 |
$('.obs-chp-etendu').each(function() {
|
|
|
941 |
var valeur = $(this).val(),
|
|
|
942 |
cle = $(this).attr('name'),
|
|
|
943 |
label = $(this).data('label');
|
|
|
944 |
if (valeur != '') {
|
|
|
945 |
var chpEtendu = {cle: cle, label: label, valeur: valeur};
|
|
|
946 |
champs.push(chpEtendu);
|
|
|
947 |
}
|
|
|
948 |
});
|
|
|
949 |
return champs;
|
2892 |
aurel |
950 |
};
|