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
|
2697 |
mathias |
198 |
lthis.initialiserMarkerDeb();
|
2708 |
mathias |
199 |
if (this.obsId == '') {
|
2256 |
aurelien |
200 |
// Tentative de geocalisation si aucune obs à précharger
|
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")) {
|
2697 |
mathias |
227 |
this.initialiserMarkerFin();
|
2408 |
jpm |
228 |
|
2256 |
aurelien |
229 |
// cas des obs florilèges qui apparaissent aussi comme des obs sauvages
|
|
|
230 |
// mais qui n'ont pas de coté de rue
|
|
|
231 |
if(data.extension.hasOwnProperty("coteRue")) {
|
|
|
232 |
$('#rue_cote option[value='+data.extension.coteRue.valeur+']').attr("selected", "selected");
|
|
|
233 |
}
|
2408 |
jpm |
234 |
|
2697 |
mathias |
235 |
var deb = new google.maps.LatLng(data.extension.latitudeDebutRue.valeur, data.extension.longitudeDebutRue.valeur);
|
|
|
236 |
var fin = new google.maps.LatLng(data.extension.latitudeFinRue.valeur, data.extension.longitudeFinRue.valeur);
|
2408 |
jpm |
237 |
|
2708 |
mathias |
238 |
this.mettreAJourMarkerPosition(pos);
|
2408 |
jpm |
239 |
|
2697 |
mathias |
240 |
this.deplacerMarkerDeb(deb);
|
|
|
241 |
this.deplacerMarkerFin(fin);
|
|
|
242 |
this.afficherEtapeGeolocalisation(4);
|
2408 |
jpm |
243 |
|
2256 |
aurelien |
244 |
var latlngbounds = new google.maps.LatLngBounds();
|
|
|
245 |
latlngbounds.extend(deb);
|
|
|
246 |
latlngbounds.extend(fin);
|
2697 |
mathias |
247 |
this.map.setCenter(latlngbounds.getCenter());
|
|
|
248 |
this.map.fitBounds(latlngbounds);
|
2256 |
aurelien |
249 |
} else if(data.hasOwnProperty("latitude") && data.hasOwnProperty("longitude")) {
|
2697 |
mathias |
250 |
this.deplacerMarkerDeb(pos);
|
2256 |
aurelien |
251 |
}
|
2701 |
mathias |
252 |
};
|
2256 |
aurelien |
253 |
|
2697 |
mathias |
254 |
WidgetSaisieSauvages.prototype.initialiserMarkerDeb = function() {
|
|
|
255 |
this.premierDeplacement = true;
|
|
|
256 |
if (this.markerDeb == undefined) {
|
1922 |
jpm |
257 |
// Marqueur de début de Rue
|
2697 |
mathias |
258 |
this.markerDeb = new google.maps.Marker({
|
|
|
259 |
map: this.map,
|
1922 |
jpm |
260 |
draggable: true,
|
|
|
261 |
title: 'Début de la portion de rue étudiée',
|
2700 |
mathias |
262 |
icon: this.googleMapMarqueurDebutUrl,
|
2697 |
mathias |
263 |
position: this.latLngDeb
|
1922 |
jpm |
264 |
});
|
2697 |
mathias |
265 |
google.maps.event.addListener(this.markerDeb, 'dragend', this.surDeplacementMarkerDeb.bind(this));
|
1922 |
jpm |
266 |
}
|
2408 |
jpm |
267 |
|
2697 |
mathias |
268 |
this.latLngFin = this.latLngDeb;
|
|
|
269 |
if (this.markerFin != undefined) {
|
|
|
270 |
this.markerFin.setMap(null);
|
1922 |
jpm |
271 |
}
|
2697 |
mathias |
272 |
this.latLngCentre = this.latLngDeb;
|
|
|
273 |
if (this.ligneRue != undefined) {
|
|
|
274 |
this.ligneRue.setMap(null);
|
1922 |
jpm |
275 |
}
|
2701 |
mathias |
276 |
};
|
1346 |
aurelien |
277 |
|
2697 |
mathias |
278 |
WidgetSaisieSauvages.prototype.surDeplacementMarkerDeb = function() {
|
2736 |
mathias |
279 |
this.latLngDeb = this.markerDeb.getPosition();
|
|
|
280 |
this.deplacerMarkerDeb(this.latLngDeb);
|
2701 |
mathias |
281 |
};
|
1346 |
aurelien |
282 |
|
2697 |
mathias |
283 |
WidgetSaisieSauvages.prototype.deplacerMarkerDeb = function(nouvellePosition) {
|
2748 |
aurelien |
284 |
|
|
|
285 |
// Annulation d'une éventuelle recherche de rue déjà en cours
|
|
|
286 |
this.annulerRechercherRue();
|
|
|
287 |
|
2697 |
mathias |
288 |
this.latLngDeb = nouvellePosition;
|
|
|
289 |
this.markerDeb.setPosition(this.latLngDeb);
|
|
|
290 |
this.map.setCenter(this.latLngDeb);
|
2708 |
mathias |
291 |
this.mettreAJourMarkerPosition(this.latLngDeb);
|
2697 |
mathias |
292 |
this.trouverCommune(this.latLngDeb);
|
1922 |
jpm |
293 |
|
2744 |
aurelien |
294 |
var nouvellePositionFin = new google.maps.LatLng(this.latLngDeb.lat(), this.latLngDeb.lng() + 0.0010);
|
|
|
295 |
this.initialiserMarkerFin();
|
|
|
296 |
this.deplacerMarkerFin(nouvellePositionFin)
|
|
|
297 |
this.afficherEtapeGeolocalisation(3);
|
2701 |
mathias |
298 |
};
|
1346 |
aurelien |
299 |
|
2697 |
mathias |
300 |
WidgetSaisieSauvages.prototype.initialiserMarkerFin = function() {
|
|
|
301 |
if (this.markerFin == undefined) {
|
|
|
302 |
this.markerFin = new google.maps.Marker({
|
|
|
303 |
map: this.map,
|
1922 |
jpm |
304 |
draggable: true,
|
|
|
305 |
title: 'Fin de la portion de rue étudiée',
|
2700 |
mathias |
306 |
icon: this.googleMapMarqueurFinUrl,
|
2697 |
mathias |
307 |
position: this.latLngFin
|
1922 |
jpm |
308 |
});
|
2697 |
mathias |
309 |
google.maps.event.addListener(this.markerFin, 'dragend', this.surDeplacementMarkerFin.bind(this));
|
1922 |
jpm |
310 |
} else {
|
2697 |
mathias |
311 |
this.markerFin.setMap(null);
|
1346 |
aurelien |
312 |
}
|
2701 |
mathias |
313 |
};
|
1346 |
aurelien |
314 |
|
2697 |
mathias |
315 |
WidgetSaisieSauvages.prototype.deplacerMarkerFin = function(nouvellePosition) {
|
|
|
316 |
this.latLngFin = nouvellePosition;
|
|
|
317 |
this.markerFin.setMap(this.map);
|
|
|
318 |
this.markerFin.setPosition(this.latLngFin);
|
|
|
319 |
this.dessinerLigneRue(this.latLngDeb, this.latLngFin);
|
2701 |
mathias |
320 |
};
|
1922 |
jpm |
321 |
|
2697 |
mathias |
322 |
WidgetSaisieSauvages.prototype.surDeplacementMarkerFin = function() {
|
2748 |
aurelien |
323 |
// Annulation d'une éventuelle recherche déjà en cours
|
|
|
324 |
this.annulerRechercherRue();
|
2744 |
aurelien |
325 |
this.rechercherRue();
|
|
|
326 |
};
|
|
|
327 |
|
|
|
328 |
WidgetSaisieSauvages.prototype.surClicRueSuivantPrecedent = function(event) {
|
|
|
329 |
event.preventDefault();
|
|
|
330 |
if($(event.target).hasClass("navigation-rue-suivant")) {
|
|
|
331 |
this.indexRueSelectionnee = this.indexRueSelectionnee < this.listeRues.length - 1 ? this.indexRueSelectionnee + 1 : 0;
|
|
|
332 |
} else {
|
|
|
333 |
this.indexRueSelectionnee = this.indexRueSelectionnee > 0 ? this.indexRueSelectionnee - 1 : this.listeRues.length - 1;
|
|
|
334 |
}
|
|
|
335 |
this.mettreRueEnValeur(this.listeRues[this.indexRueSelectionnee]);
|
|
|
336 |
}
|
|
|
337 |
|
|
|
338 |
WidgetSaisieSauvages.prototype.afficherChargementRechercheRue = function() {
|
|
|
339 |
this.ligneRue.setMap(null);
|
|
|
340 |
var img = '<img src="'+this.chargementImageIconeUrl+'" />';
|
|
|
341 |
$('#indication-nom-rue-nom').html(img+" Recherche de la rue en cours");
|
|
|
342 |
$('#indication-nom-rue').css('visibility','visible');
|
|
|
343 |
$('#indication-nom-rue').effect("highlight", {}, 500);
|
|
|
344 |
$(".navigation-rue").toggle(false);
|
|
|
345 |
}
|
|
|
346 |
|
|
|
347 |
WidgetSaisieSauvages.prototype.rechercherRue = function() {
|
|
|
348 |
this.afficherChargementRechercheRue();
|
|
|
349 |
|
|
|
350 |
var params = "latitude_debut="+this.markerDeb.getPosition().lat()+"&longitude_debut="+this.markerDeb.getPosition().lng()+
|
|
|
351 |
"&latitude_fin="+this.markerFin.getPosition().lat()+"&longitude_fin="+this.markerFin.getPosition().lng();
|
|
|
352 |
var lthis = this;
|
|
|
353 |
|
2748 |
aurelien |
354 |
this.requeteRechercheRue = $.getJSON(this.serviceTraceRueUrl+'?'+params, function(data) {
|
2744 |
aurelien |
355 |
$('#indication-nom-rue-nom').html("");
|
|
|
356 |
lthis.listeRues = data.elements;
|
|
|
357 |
var coordDeb = {"lat" : lthis.markerDeb.getPosition().lat(), "lon" : lthis.markerDeb.getPosition().lng()};
|
|
|
358 |
var coordFin = {"lat" : lthis.markerFin.getPosition().lat(), "lon" : lthis.markerFin.getPosition().lng()};
|
2748 |
aurelien |
359 |
var tags = {"name" : lthis.aucuneRueSelectionnee};
|
2744 |
aurelien |
360 |
var pasDeRue = {"geometry" : [coordDeb, coordFin], "tags" : tags};
|
|
|
361 |
lthis.listeRues.push(pasDeRue);
|
|
|
362 |
lthis.indexRueSelectionnee = 0;
|
|
|
363 |
lthis.mettreRueEnValeur(lthis.listeRues[0]);
|
|
|
364 |
});
|
|
|
365 |
}
|
|
|
366 |
|
2748 |
aurelien |
367 |
WidgetSaisieSauvages.prototype.annulerRechercherRue = function() {
|
|
|
368 |
if(this.requeteRechercheRue != null) {
|
|
|
369 |
this.requeteRechercheRue.abort();
|
|
|
370 |
this.requeteRechercheRue = null;
|
|
|
371 |
$('#indication-nom-rue').css('visibility','hidden');
|
|
|
372 |
}
|
|
|
373 |
}
|
|
|
374 |
|
|
|
375 |
|
2744 |
aurelien |
376 |
WidgetSaisieSauvages.prototype.mettreRueEnValeur = function(rue) {
|
|
|
377 |
this.afficherIndicationRue(rue['tags']['name']);
|
|
|
378 |
this.afficherTraceRue(rue['geometry']);
|
2697 |
mathias |
379 |
this.afficherEtapeGeolocalisation(4);
|
2744 |
aurelien |
380 |
}
|
|
|
381 |
|
|
|
382 |
WidgetSaisieSauvages.prototype.afficherIndicationRue = function(indication) {
|
2748 |
aurelien |
383 |
indication = !!indication ? indication : this.nomDeRueInconnue;
|
2744 |
aurelien |
384 |
$('#indication-nom-rue-nom').html(indication);
|
|
|
385 |
$('#indication-nom-rue').css('visibility','visible');
|
|
|
386 |
$('#indication-nom-rue').effect("highlight", {}, 500);
|
|
|
387 |
$(".navigation-rue").toggle(this.listeRues.length > 1);
|
|
|
388 |
}
|
|
|
389 |
|
|
|
390 |
WidgetSaisieSauvages.prototype.afficherTraceRue = function(rue) {
|
|
|
391 |
|
|
|
392 |
if (this.ligneRue != undefined) {
|
|
|
393 |
this.ligneRue.setMap(null);
|
|
|
394 |
}
|
|
|
395 |
|
|
|
396 |
var cheminRue = new Array();
|
|
|
397 |
if(rue.length > 0) {
|
|
|
398 |
$.each(rue, function(index, value) {
|
|
|
399 |
cheminRue.push(new google.maps.LatLng(value['lat'], value['lon']));
|
|
|
400 |
});
|
|
|
401 |
|
|
|
402 |
this.ligneRue = new google.maps.Polyline({
|
|
|
403 |
path: cheminRue,
|
|
|
404 |
strokeColor: "#FF0000",
|
|
|
405 |
strokeOpacity: 1.0,
|
|
|
406 |
strokeWeight: 2
|
|
|
407 |
});
|
|
|
408 |
|
|
|
409 |
this.ligneRue.setMap(this.map);
|
|
|
410 |
}
|
2701 |
mathias |
411 |
};
|
1922 |
jpm |
412 |
|
2697 |
mathias |
413 |
WidgetSaisieSauvages.prototype.dessinerLigneRue = function(pointDebut, pointFin) {
|
|
|
414 |
if (this.ligneRue != undefined) {
|
|
|
415 |
this.ligneRue.setMap(null);
|
1346 |
aurelien |
416 |
}
|
2408 |
jpm |
417 |
|
2697 |
mathias |
418 |
this.ligneRue = new google.maps.Polyline({
|
1922 |
jpm |
419 |
path: [pointDebut, pointFin],
|
|
|
420 |
strokeColor: "#FF0000",
|
|
|
421 |
strokeOpacity: 1.0,
|
|
|
422 |
strokeWeight: 2
|
|
|
423 |
});
|
1346 |
aurelien |
424 |
|
2697 |
mathias |
425 |
this.ligneRue.setMap(this.map);
|
2701 |
mathias |
426 |
};
|
1346 |
aurelien |
427 |
|
2697 |
mathias |
428 |
WidgetSaisieSauvages.prototype.afficherCentreRue = function() {
|
|
|
429 |
this.latLngDeb = this.markerDeb.getPosition();
|
|
|
430 |
this.latLngFin = this.markerFin.getPosition();
|
|
|
431 |
this.latLngCentre = new google.maps.LatLng((this.latLngFin.lat() + this.latLngDeb.lat())/2, (this.latLngFin.lng() + this.latLngDeb.lng())/2);
|
2708 |
mathias |
432 |
this.mettreAJourMarkerPosition(this.latLngCentre);
|
2701 |
mathias |
433 |
};
|
1922 |
jpm |
434 |
|
2697 |
mathias |
435 |
WidgetSaisieSauvages.prototype.afficherEtapeGeolocalisation = function(numEtape) {
|
1922 |
jpm |
436 |
$('.liste_indication_geolocalisation').children().hide();
|
|
|
437 |
$('.liste_indication_geolocalisation :nth-child('+numEtape+')').show();
|
2701 |
mathias |
438 |
};
|
1922 |
jpm |
439 |
|
2697 |
mathias |
440 |
// surcharge
|
|
|
441 |
WidgetSaisieSauvages.prototype.geolocaliser = function(event) {
|
1922 |
jpm |
442 |
var latitude = $('#latitude').val(),
|
|
|
443 |
longitude = $('#longitude').val(),
|
|
|
444 |
nouvellePosition = new google.maps.LatLng(latitude, longitude);
|
2697 |
mathias |
445 |
this.initialiserMarkerDeb();
|
|
|
446 |
this.deplacerMarkerDeb(nouvellePosition);
|
|
|
447 |
this.afficherEtapeGeolocalisation(2);
|
|
|
448 |
this.map.setZoom(16);
|
1922 |
jpm |
449 |
arreter(event);
|
2701 |
mathias |
450 |
};
|
1922 |
jpm |
451 |
|
2697 |
mathias |
452 |
WidgetSaisieSauvages.prototype.tenterGeolocalisation = function() {
|
2715 |
mathias |
453 |
var lthis = this;
|
1922 |
jpm |
454 |
if (navigator.geolocation) {
|
|
|
455 |
navigator.geolocation.getCurrentPosition(function(position) {
|
|
|
456 |
var latitude = position.coords.latitude,
|
|
|
457 |
longitude = position.coords.longitude,
|
|
|
458 |
nouvellePosition = new google.maps.LatLng(latitude, longitude);
|
2715 |
mathias |
459 |
lthis.initialiserMarkerDeb();
|
|
|
460 |
lthis.deplacerMarkerDeb(nouvellePosition);
|
|
|
461 |
lthis.map.setZoom(16);
|
1922 |
jpm |
462 |
});
|
|
|
463 |
}
|
2701 |
mathias |
464 |
};
|
1922 |
jpm |
465 |
|
2697 |
mathias |
466 |
/**
|
|
|
467 |
* AUTO-COMPLÉTION Noms Scientifiques => OK
|
|
|
468 |
* sélectionne un nom et puis qu'on le remplacer par un nom non valide
|
|
|
469 |
* Garder la trace de la valeur permet de vider le nn lorsqu'on
|
|
|
470 |
*/
|
|
|
471 |
WidgetSaisieSauvages.prototype.ajouterAutocompletionNoms = function() {
|
|
|
472 |
var lthis = this;
|
1922 |
jpm |
473 |
$('#taxon').autocomplete({
|
2408 |
jpm |
474 |
source: function(requete, add){
|
1922 |
jpm |
475 |
// la variable de requête doit être vidée car sinon le parametre "term" est ajouté
|
2408 |
jpm |
476 |
|
2697 |
mathias |
477 |
var url = lthis.getUrlAutocompletionNomsSci();
|
1922 |
jpm |
478 |
$.getJSON(url, function(data) {
|
2697 |
mathias |
479 |
var suggestions = lthis.traiterRetourNomsSci(data);
|
2408 |
jpm |
480 |
add(suggestions);
|
1922 |
jpm |
481 |
});
|
|
|
482 |
},
|
|
|
483 |
html: true
|
|
|
484 |
});
|
2408 |
jpm |
485 |
|
1922 |
jpm |
486 |
$('#taxon').bind('autocompleteselect', function(event, ui) {
|
|
|
487 |
$('#taxon').data(ui.item);
|
2697 |
mathias |
488 |
lthis.valeurChamp = $('#taxon').val();
|
1922 |
jpm |
489 |
if (ui.item.retenu == true) {
|
|
|
490 |
$('#taxon').addClass('ns-retenu');
|
|
|
491 |
} else {
|
|
|
492 |
$('#taxon').removeClass('ns-retenu');
|
|
|
493 |
}
|
|
|
494 |
});
|
2529 |
aurelien |
495 |
|
|
|
496 |
$('#taxon').bind('keypress', function() {
|
2697 |
mathias |
497 |
if(lthis.valeurChamp != $('#taxon').val()) {
|
2529 |
aurelien |
498 |
$('#taxon').data('numNomSel', '');
|
|
|
499 |
}
|
2697 |
mathias |
500 |
lthis.valeurChamp = $('#taxon').val();
|
2529 |
aurelien |
501 |
});
|
2701 |
mathias |
502 |
};
|
1922 |
jpm |
503 |
|
2697 |
mathias |
504 |
WidgetSaisieSauvages.prototype.getUrlAutocompletionNomsSci = function() {
|
1922 |
jpm |
505 |
var mots = $('#taxon').val(),
|
2700 |
mathias |
506 |
url = this.serviceAutocompletionNomSciUrlTpl.replace('{referentiel}', this.nomSciReferentiel);
|
1922 |
jpm |
507 |
url = url.replace('{masque}', mots);
|
|
|
508 |
return url;
|
2701 |
mathias |
509 |
};
|
1922 |
jpm |
510 |
|
2697 |
mathias |
511 |
WidgetSaisieSauvages.prototype.traiterRetourNomsSci = function(data) {
|
1922 |
jpm |
512 |
var suggestions = [];
|
|
|
513 |
if (data.resultat != undefined) {
|
|
|
514 |
$.each(data.resultat, function(i, val) {
|
|
|
515 |
val.nn = i;
|
|
|
516 |
var nom = {label: '', value: '', nt: '', nomSel: '', nomSelComplet: '', numNomSel: '',
|
|
|
517 |
nomRet: '', numNomRet: '', famille: '', retenu: false
|
|
|
518 |
};
|
2700 |
mathias |
519 |
if (suggestions.length >= this.autocompletionElementsNbre) {
|
1922 |
jpm |
520 |
nom.label = '...';
|
|
|
521 |
nom.value = $('#taxon').val();
|
|
|
522 |
suggestions.push(nom);
|
|
|
523 |
return false;
|
|
|
524 |
} else {
|
|
|
525 |
nom.label = val.nom_sci_complet;
|
|
|
526 |
nom.value = val.nom_sci_complet;
|
|
|
527 |
nom.nt = val.num_taxonomique;
|
|
|
528 |
nom.nomSel = val.nom_sci;
|
|
|
529 |
nom.nomSelComplet = val.nom_sci_complet;
|
|
|
530 |
nom.numNomSel = val.nn;
|
|
|
531 |
nom.nomRet = val.nom_retenu_complet;
|
|
|
532 |
nom.numNomRet = val['nom_retenu.id'];
|
|
|
533 |
nom.famille = val.famille;
|
|
|
534 |
nom.retenu = (val.retenu == 'false') ? false : true;
|
2408 |
jpm |
535 |
|
1922 |
jpm |
536 |
suggestions.push(nom);
|
|
|
537 |
}
|
|
|
538 |
});
|
|
|
539 |
}
|
|
|
540 |
return suggestions;
|
2701 |
mathias |
541 |
};
|
1922 |
jpm |
542 |
|
2697 |
mathias |
543 |
// surcharge
|
|
|
544 |
WidgetSaisieSauvages.prototype.configurerFormValidator = function() {
|
1916 |
jpm |
545 |
$.validator.addMethod(
|
2408 |
jpm |
546 |
'dateCel',
|
|
|
547 |
function (value, element) {
|
|
|
548 |
return value == '' || (/^[0-9]{2}[-\/][0-9]{2}[-\/][0-9]{4}$/.test(value));
|
|
|
549 |
},
|
1916 |
jpm |
550 |
'Format : jj/mm/aaaa. Date incomplète, utiliser 0, exemple : 00/12/2011.');
|
2408 |
jpm |
551 |
|
1916 |
jpm |
552 |
$.extend($.validator.defaults, {
|
|
|
553 |
ignore: [],// Forcer Jquery Validate à examiner les éléments avec en display:none;
|
|
|
554 |
highlight: function(element) {
|
|
|
555 |
$(element).closest('.control-group').removeClass('success').addClass('error');
|
|
|
556 |
},
|
|
|
557 |
success: function(element) {
|
|
|
558 |
element.text('OK!').addClass('valid');
|
|
|
559 |
element.closest('.control-group').removeClass('error').addClass('success');
|
2408 |
jpm |
560 |
|
1916 |
jpm |
561 |
if (element.attr('id') == 'taxon' && $('#taxon').val() != '') {
|
|
|
562 |
// Si le taxon n'est pas lié au référentiel, on vide le data associé
|
|
|
563 |
if ($('#taxon').data('value') != $('#taxon').val()) {
|
|
|
564 |
$('#taxon').data('numNomSel', '');
|
|
|
565 |
$('#taxon').data('nomRet', '');
|
|
|
566 |
$('#taxon').data('numNomRet', '');
|
|
|
567 |
$('#taxon').data('nt', '');
|
|
|
568 |
$('#taxon').data('famille', '');
|
|
|
569 |
}
|
|
|
570 |
}
|
|
|
571 |
}
|
|
|
572 |
});
|
2701 |
mathias |
573 |
};
|
1916 |
jpm |
574 |
|
2697 |
mathias |
575 |
// surcharge
|
|
|
576 |
WidgetSaisieSauvages.prototype.definirReglesFormValidator = function() {
|
1916 |
jpm |
577 |
$('#form-observateur').validate({
|
|
|
578 |
rules: {
|
|
|
579 |
courriel: {
|
|
|
580 |
required: true,
|
|
|
581 |
email: true},
|
|
|
582 |
courriel_confirmation: {
|
|
|
583 |
required: true,
|
|
|
584 |
equalTo: '#courriel'},
|
|
|
585 |
prenom: {
|
|
|
586 |
required: true},
|
|
|
587 |
nom: {
|
|
|
588 |
required: true}
|
|
|
589 |
}
|
|
|
590 |
});
|
|
|
591 |
$('#form-obs').validate({
|
|
|
592 |
rules: {
|
|
|
593 |
station: {
|
|
|
594 |
required: true},
|
|
|
595 |
latitude : {
|
|
|
596 |
required: true,
|
|
|
597 |
range: [-90, 90]},
|
|
|
598 |
longitude: {
|
|
|
599 |
required: true,
|
|
|
600 |
range: [-180, 180]},
|
|
|
601 |
date: {
|
|
|
602 |
required: true,
|
|
|
603 |
'dateCel' : true},
|
1956 |
jpm |
604 |
coteRue: {
|
1916 |
jpm |
605 |
required: true},
|
|
|
606 |
'taxon-liste': {
|
|
|
607 |
required: true},
|
|
|
608 |
'milieux[]': {
|
|
|
609 |
required: true,
|
|
|
610 |
minlength: 1}
|
|
|
611 |
},
|
|
|
612 |
errorPlacement: function(error, element) {
|
|
|
613 |
if (element.attr('name') == 'date') {
|
|
|
614 |
element.parent('.input-prepend').after(error);
|
|
|
615 |
} else if (element.attr('name') == 'milieux[]') {
|
|
|
616 |
error.insertAfter('#milieux-controls');
|
|
|
617 |
} else {
|
|
|
618 |
error.insertAfter(element);
|
|
|
619 |
}
|
|
|
620 |
},
|
|
|
621 |
messages: {
|
|
|
622 |
'milieu[]': 'Vous devez sélectionner au moins un milieu'
|
|
|
623 |
}
|
|
|
624 |
});
|
2701 |
mathias |
625 |
};
|
1916 |
jpm |
626 |
|
2697 |
mathias |
627 |
WidgetSaisieSauvages.prototype.validerFormulaire = function() {
|
1946 |
jpm |
628 |
var observateur = $('#form-observateur').valid(),
|
|
|
629 |
obs = $('#form-obs').valid(),
|
2697 |
mathias |
630 |
debRue = (this.latLngDeb == undefined || this.latLngDeb == this.latLngFin) ? false : true,
|
|
|
631 |
finRue = (this.latLngFin == undefined || this.latLngDeb == this.latLngFin) ? false : true;
|
1946 |
jpm |
632 |
var ok = (observateur && obs && debRue && finRue) ? true : false;
|
1964 |
jpm |
633 |
//console.log('observateur:'+observateur+'-obs:'+obs+'-debRue:'+debRue+'('+latLngDeb+')-finRue:'+finRue+'('+latLngDeb+')');
|
1946 |
jpm |
634 |
return ok;
|
2701 |
mathias |
635 |
};
|
1946 |
jpm |
636 |
|
2697 |
mathias |
637 |
WidgetSaisieSauvages.prototype.surChangementTaxonListe = function() {
|
1916 |
jpm |
638 |
if ($('#taxon-liste').val() === '?') {
|
|
|
639 |
$('#taxon-input-groupe').removeClass('hidden');
|
|
|
640 |
} else {
|
|
|
641 |
$('#taxon-input-groupe').addClass('hidden');
|
|
|
642 |
}
|
2701 |
mathias |
643 |
};
|
1916 |
jpm |
644 |
|
2697 |
mathias |
645 |
WidgetSaisieSauvages.prototype.surChangementValeurTaxon = function() {
|
2529 |
aurelien |
646 |
var nomHorsListe = $('#taxon-liste').val() == '?' ? true : false;
|
2697 |
mathias |
647 |
var nomSpecial = $('#taxon-liste option:selected').hasClass('nom-special');
|
|
|
648 |
var numNomSel = nomHorsListe ? $('#taxon').data('numNomSel') : $('#taxon-liste').val();
|
2529 |
aurelien |
649 |
|
|
|
650 |
// Un nom non valide entraine automatiquement une certitude "à déterminer"
|
|
|
651 |
if(nomSpecial || !numNomSel) {
|
|
|
652 |
$('#certitude-adeterminer').attr('checked', 'checked');
|
|
|
653 |
} else {
|
|
|
654 |
$('#certitude-adeterminer').removeAttr('checked');
|
|
|
655 |
}
|
2701 |
mathias |
656 |
};
|
2529 |
aurelien |
657 |
|
2697 |
mathias |
658 |
// surcharge
|
|
|
659 |
WidgetSaisieSauvages.prototype.ajouterObs = function() {
|
|
|
660 |
if (this.validerFormulaire() == true) {
|
|
|
661 |
this.obsNbre = this.obsNbre + 1;
|
|
|
662 |
$('.obs-nbre').text(this.obsNbre);
|
1922 |
jpm |
663 |
$('.obs-nbre').triggerHandler('changement');
|
2697 |
mathias |
664 |
this.afficherObs();
|
|
|
665 |
this.stockerObsData();
|
|
|
666 |
this.supprimerMiniatures();
|
1922 |
jpm |
667 |
} else {
|
1956 |
jpm |
668 |
// Affichage de tous les panneau cachés avec champ obligatoire
|
2697 |
mathias |
669 |
var debRue = (this.latLngDeb == undefined || this.latLngDeb == this.latLngFin) ? false : true,
|
|
|
670 |
finRue = (this.latLngFin == undefined || this.latLngDeb == this.latLngFin) ? false : true;
|
1922 |
jpm |
671 |
if (debRue == false || finRue == false) {
|
2700 |
mathias |
672 |
this.afficherPanneau('#dialogue-form-invalide-rue');
|
1922 |
jpm |
673 |
} else {
|
2700 |
mathias |
674 |
this.afficherPanneau('#dialogue-form-invalide');
|
1922 |
jpm |
675 |
}
|
2697 |
mathias |
676 |
this.montrerFormIdentite();
|
1922 |
jpm |
677 |
}
|
2697 |
mathias |
678 |
};
|
1922 |
jpm |
679 |
|
2697 |
mathias |
680 |
// surcharge
|
|
|
681 |
WidgetSaisieSauvages.prototype.afficherObs = function() {
|
1922 |
jpm |
682 |
var numNomSel = ($('#taxon-liste').val() == '?') ? $('#taxon').data('numNomSel') : $('#taxon-liste').val(),
|
|
|
683 |
nomSpecial = $('#taxon-liste option:selected').hasClass('nom-special'),
|
|
|
684 |
taxon = ($('#taxon-liste').val() == '?') ? $('#taxon').val() : $('#taxon-liste option:selected').data('nom-a-sauver'),
|
2700 |
mathias |
685 |
referentiel = (numNomSel == undefined) ? '' : '['+ this.nomSciReferentiel +']',
|
1922 |
jpm |
686 |
commune = $('#commune-nom').text(),
|
|
|
687 |
codeInsee = $('#commune-code-insee').text(),
|
2748 |
aurelien |
688 |
station = this.getValeurStation(),
|
1922 |
jpm |
689 |
lat = $('input[name="latitude"]').val(),
|
|
|
690 |
lng = $('input[name="longitude"]').val(),
|
|
|
691 |
date = $('#date').val(),
|
2697 |
mathias |
692 |
milieux = this.getMilieux(),
|
|
|
693 |
notes = (nomSpecial ? this.taxons[numNomSel]['nom_fr'] + ".<br />" : '') + $('#notes').val();
|
2408 |
jpm |
694 |
|
1922 |
jpm |
695 |
$('#liste-obs').prepend(
|
2697 |
mathias |
696 |
'<div id="obs'+this.obsNbre+'" class="row-fluid obs obs'+this.obsNbre+'">' +
|
1946 |
jpm |
697 |
'<div class="span12">' +
|
|
|
698 |
'<div class="well">' +
|
|
|
699 |
'<div class="obs-action pull-right has-tooltip" data-placement="bottom" ' +
|
|
|
700 |
'title="Supprimer cette observation de la liste à transmettre">' +
|
2697 |
mathias |
701 |
'<button class="btn btn-danger supprimer-obs" value="'+this.obsNbre+'" title="'+this.obsNbre+'">' +
|
1946 |
jpm |
702 |
'<i class="icon-trash icon-white"></i>' +
|
|
|
703 |
'</button>' +
|
2408 |
jpm |
704 |
'</div> ' +
|
|
|
705 |
'<div class="row-fluid">' +
|
1946 |
jpm |
706 |
'<div class="span2 obs-miniatures">' +
|
2697 |
mathias |
707 |
this.ajouterImgMiniatureAuTransfert() +
|
1922 |
jpm |
708 |
'</div>'+
|
1946 |
jpm |
709 |
'<div class="span7">' +
|
|
|
710 |
'<ul class="unstyled">' +
|
1922 |
jpm |
711 |
'<li>'+
|
|
|
712 |
'<span class="nom-sci">' + taxon + '</span> ' +
|
2697 |
mathias |
713 |
this.formaterNumNomSel(numNomSel) +
|
1946 |
jpm |
714 |
' observé à <br />' +
|
1993 |
jpm |
715 |
'<span class="commune">' + commune + '</span> ' +
|
|
|
716 |
'(' + codeInsee + '), ' +
|
1946 |
jpm |
717 |
'<span class="station">' + station + '</span><br /> ' +
|
1922 |
jpm |
718 |
' le ' +
|
|
|
719 |
'<span class="date">' + date + '</span>' +
|
|
|
720 |
'</li>' +
|
|
|
721 |
'<li>' +
|
1946 |
jpm |
722 |
'Milieux : ' + milieux + ' ' + ' ; ' +
|
1922 |
jpm |
723 |
'</li>' +
|
|
|
724 |
'<li>' +
|
2408 |
jpm |
725 |
'Notes : ' + notes +
|
1946 |
jpm |
726 |
'</li>' +
|
|
|
727 |
'</ul>' +
|
|
|
728 |
'</div>' +
|
|
|
729 |
'</div>' +
|
|
|
730 |
'</div>' +
|
1922 |
jpm |
731 |
'</div>'+
|
|
|
732 |
'</div>');
|
2697 |
mathias |
733 |
$('#zone-liste-obs').removeClass("hidden");
|
|
|
734 |
};
|
1922 |
jpm |
735 |
|
2748 |
aurelien |
736 |
WidgetSaisieSauvages.prototype.getValeurStation = function() {
|
|
|
737 |
var station = "";
|
|
|
738 |
var valeurSelectionnee = $("#indication-nom-rue-nom").text().trim();
|
|
|
739 |
if(valeurSelectionnee == this.aucuneRueSelectionnee || valeurSelectionnee == this.nomDeRueInconnue) {
|
|
|
740 |
station = $('input[name="adresse"]').val().trim()
|
|
|
741 |
} else {
|
|
|
742 |
station = $("#indication-nom-rue-nom").text().trim();
|
|
|
743 |
}
|
|
|
744 |
|
|
|
745 |
return station;
|
|
|
746 |
}
|
|
|
747 |
|
2697 |
mathias |
748 |
WidgetSaisieSauvages.prototype.getMilieux = function() {
|
1922 |
jpm |
749 |
var milieuxStr = '',
|
|
|
750 |
milieux = [];
|
|
|
751 |
$('.cb-milieux:checked').each(function() {
|
|
|
752 |
milieux.push($(this).val());
|
|
|
753 |
});
|
2408 |
jpm |
754 |
|
1922 |
jpm |
755 |
milieuxStr = Array.prototype.slice.call(milieux).join(', ');
|
|
|
756 |
return milieuxStr;
|
2697 |
mathias |
757 |
};
|
1922 |
jpm |
758 |
|
2697 |
mathias |
759 |
WidgetSaisieSauvages.prototype.ajouterImgMiniatureAuTransfert = function() {
|
1922 |
jpm |
760 |
var html = '',
|
|
|
761 |
miniatures = '',
|
|
|
762 |
indicateurs = '',
|
|
|
763 |
premiere = true,
|
|
|
764 |
numero = 1;
|
|
|
765 |
if ($('#miniatures img').length == 0) {
|
2700 |
mathias |
766 |
html = '<img class="miniature" alt="Aucune photo"src="'+ this.pasDePhotoIconeUrl +'" />';
|
1922 |
jpm |
767 |
} else if ($('#miniatures img').length >= 1) {
|
|
|
768 |
$('#miniatures img').each(function() {
|
|
|
769 |
var visible = premiere ? 'miniature-selectionnee' : 'miniature-cachee',
|
|
|
770 |
css = $(this).hasClass('b64') ? 'miniature b64' : 'miniature',
|
|
|
771 |
src = $(this).attr('src'),
|
|
|
772 |
alt = $(this).attr('alt');
|
2408 |
jpm |
773 |
|
1922 |
jpm |
774 |
var miniature = '<img class="'+css+' '+visible+'" alt="'+alt+'"src="'+src+'" />';
|
|
|
775 |
miniatures += miniature;
|
2408 |
jpm |
776 |
|
1922 |
jpm |
777 |
var indicateurActif = premiere ? 'active' : '';
|
|
|
778 |
var indicateur = '<li class="' + indicateurActif + '" data-numero="' + numero++ + '"></li>';
|
|
|
779 |
indicateurs += indicateur;
|
2408 |
jpm |
780 |
|
1922 |
jpm |
781 |
premiere = false;
|
|
|
782 |
});
|
2408 |
jpm |
783 |
|
1922 |
jpm |
784 |
if ($('#miniatures img').length == 1) {
|
|
|
785 |
html = miniatures;
|
|
|
786 |
} else {
|
2408 |
jpm |
787 |
html =
|
1922 |
jpm |
788 |
'<div class="defilement">' +
|
|
|
789 |
miniatures +
|
|
|
790 |
'<a class="defilement-control-zone gauche">' +
|
|
|
791 |
' <span class="defilement-control gauche hidden"><</span>' +
|
|
|
792 |
'</a>' +
|
|
|
793 |
'<a class="defilement-control-zone droite">' +
|
|
|
794 |
' <span class="defilement-control droite hidden">></span>' +
|
|
|
795 |
'</a>' +
|
|
|
796 |
'<ol class="defilement-indicateurs">' + indicateurs + '</ol>' +
|
|
|
797 |
'</div>';
|
|
|
798 |
}
|
|
|
799 |
}
|
|
|
800 |
return html;
|
2697 |
mathias |
801 |
};
|
1922 |
jpm |
802 |
|
2697 |
mathias |
803 |
WidgetSaisieSauvages.prototype.defilerMiniatures = function(element) {
|
1922 |
jpm |
804 |
var miniatureSelectionne = element.siblings('img.miniature-selectionnee');
|
|
|
805 |
miniatureSelectionne.removeClass('miniature-selectionnee').addClass('miniature-cachee');
|
|
|
806 |
var miniatureAffichee = miniatureSelectionne;
|
2408 |
jpm |
807 |
|
1922 |
jpm |
808 |
var indicateurActif = element.parent().find('.defilement-indicateurs .active');
|
|
|
809 |
indicateurActif.removeClass('active');
|
2408 |
jpm |
810 |
|
1922 |
jpm |
811 |
if (element.hasClass('defilement-control-zone') && element.hasClass('gauche')) {
|
|
|
812 |
if (miniatureSelectionne.prev('.miniature').length != 0) {
|
|
|
813 |
miniatureAffichee = miniatureSelectionne.prev('.miniature');
|
|
|
814 |
indicateurActif.prev().addClass('active');
|
|
|
815 |
} else {
|
|
|
816 |
miniatureAffichee = miniatureSelectionne.siblings('.miniature').last();
|
|
|
817 |
indicateurActif.siblings().last().addClass('active');
|
|
|
818 |
}
|
|
|
819 |
} else {
|
|
|
820 |
if (miniatureSelectionne.next('.miniature').length != 0) {
|
|
|
821 |
miniatureAffichee = miniatureSelectionne.next('.miniature');
|
|
|
822 |
indicateurActif.next().addClass('active');
|
|
|
823 |
} else {
|
|
|
824 |
miniatureAffichee = miniatureSelectionne.siblings('.miniature').first();
|
|
|
825 |
indicateurActif.siblings().first().addClass('active');
|
|
|
826 |
}
|
|
|
827 |
}
|
|
|
828 |
miniatureAffichee.addClass('miniature-selectionnee').removeClass('miniature-cachee');
|
2701 |
mathias |
829 |
};
|
1922 |
jpm |
830 |
|
2697 |
mathias |
831 |
WidgetSaisieSauvages.prototype.formaterNumNomSel = function(numNomSel) {
|
1922 |
jpm |
832 |
var nn = '';
|
|
|
833 |
if (numNomSel == undefined) {
|
|
|
834 |
nn = '<span class="alert-error">[non lié au référentiel]</span>';
|
|
|
835 |
} else {
|
|
|
836 |
nn = '<span class="nn">[nn'+numNomSel+']</span>';
|
|
|
837 |
}
|
|
|
838 |
return nn;
|
2701 |
mathias |
839 |
};
|
1922 |
jpm |
840 |
|
2697 |
mathias |
841 |
// surcharge
|
|
|
842 |
WidgetSaisieSauvages.prototype.surChangementReferentiel = function() {
|
2700 |
mathias |
843 |
this.nomSciReferentiel = $('#referentiel').val();
|
1922 |
jpm |
844 |
$('#taxon').val('');
|
2701 |
mathias |
845 |
};
|
1922 |
jpm |
846 |
|
2697 |
mathias |
847 |
// surcharge
|
|
|
848 |
WidgetSaisieSauvages.prototype.stockerObsData = function() {
|
|
|
849 |
var lthis = this;
|
1922 |
jpm |
850 |
var nomHorsListe = $('#taxon-liste').val() == '?' ? true : false;
|
|
|
851 |
nomSpecial = $('#taxon-liste option:selected').hasClass('nom-special'),
|
2709 |
mathias |
852 |
numNomSel = nomHorsListe ? $('#taxon').data('numNomSel') : $('#taxon-liste').val();
|
|
|
853 |
var nomSel = nomHorsListe ? $('#taxon').val() : $('#taxon-liste option:selected').data('nom-a-sauver'),
|
2708 |
mathias |
854 |
nomRet = nomHorsListe ? $('#taxon').data('nomRet') : this.taxons[numNomSel]['nom_ret'],
|
|
|
855 |
numNomRet = nomHorsListe ? $('#taxon').data('numNomRet') : this.taxons[numNomSel]['num_nom_ret'],
|
|
|
856 |
numTaxon = nomHorsListe ? $('#taxon').data('nt') : this.taxons[numNomSel]['num_taxon'],
|
|
|
857 |
famille = nomHorsListe ? $('#taxon').data('famille') : this.taxons[numNomSel]['famille'],
|
2700 |
mathias |
858 |
referentiel = (numNomSel == undefined) ? '' : this.nomSciReferentiel,
|
2708 |
mathias |
859 |
notes = (nomSpecial ? this.taxons[numNomSel]['nom_fr'] + '. ' : '') + $('#notes').val();
|
2521 |
aurelien |
860 |
|
|
|
861 |
certitude = $('input[name=certitude]:checked').val();
|
|
|
862 |
certitude = (certitude == undefined) ? '' : certitude;
|
2408 |
jpm |
863 |
|
2697 |
mathias |
864 |
$('#liste-obs').data('obsId'+this.obsNbre, {
|
2408 |
jpm |
865 |
'date': $('#date').val(),
|
1922 |
jpm |
866 |
'notes': notes,
|
2408 |
jpm |
867 |
|
2748 |
aurelien |
868 |
'station': this.getValeurStation(),
|
1922 |
jpm |
869 |
'latitude': $('#latitude').val(),
|
|
|
870 |
'longitude': $('#longitude').val(),
|
|
|
871 |
'commune_nom': $('#commune-nom').text(),
|
|
|
872 |
'commune_code_insee': $('#commune-code-insee').text(),
|
2408 |
jpm |
873 |
|
1922 |
jpm |
874 |
'nom_sel': nomSel,
|
|
|
875 |
'num_nom_sel': numNomSel,
|
|
|
876 |
'nom_ret': nomRet,
|
|
|
877 |
'num_nom_ret': numNomRet,
|
|
|
878 |
'num_taxon': numTaxon,
|
|
|
879 |
'famille': famille,
|
|
|
880 |
'referentiel': referentiel,
|
2521 |
aurelien |
881 |
'certitude': certitude,
|
2697 |
mathias |
882 |
'milieu': lthis.getMilieux(),
|
2408 |
jpm |
883 |
|
1922 |
jpm |
884 |
// Ajout des champs images
|
2697 |
mathias |
885 |
'image_nom': lthis.getNomsImgsOriginales(),
|
2408 |
jpm |
886 |
|
1922 |
jpm |
887 |
// Ajout des champs étendus de l'obs
|
2697 |
mathias |
888 |
'obs_etendue': lthis.getObsChpEtendus()
|
1922 |
jpm |
889 |
});
|
2700 |
mathias |
890 |
if (this.debug) {
|
2697 |
mathias |
891 |
console.log($('#liste-obs').data('obsId'+this.obsNbre));
|
1964 |
jpm |
892 |
}
|
2701 |
mathias |
893 |
};
|
1922 |
jpm |
894 |
|
2697 |
mathias |
895 |
WidgetSaisieSauvages.prototype.getObsChpEtendus = function() {
|
1946 |
jpm |
896 |
var champs = [];
|
2697 |
mathias |
897 |
if (this.latLngDeb != undefined) {
|
|
|
898 |
var latitudeDebutRue = {cle: 'latitudeDebutRue', label: 'Latitude du début de la rue', valeur: this.latLngDeb.lat().toFixed(5)};
|
1922 |
jpm |
899 |
champs.push(latitudeDebutRue);
|
2697 |
mathias |
900 |
var longitudeDebutRue = {cle: 'longitudeDebutRue', label: 'Longitude du début de la rue', valeur: this.latLngDeb.lng().toFixed(5)};
|
1922 |
jpm |
901 |
champs.push(longitudeDebutRue);
|
|
|
902 |
}
|
2697 |
mathias |
903 |
if (this.latLngFin != undefined) {
|
|
|
904 |
var latitudeFinRue = {cle: 'latitudeFinRue', label: 'Latitude de fin de la rue', valeur: this.latLngFin.lat().toFixed(5)};
|
1922 |
jpm |
905 |
champs.push(latitudeFinRue);
|
2697 |
mathias |
906 |
var longitudeFinRue = {cle: 'longitudeFinRue', label: 'Longitude de fin de la rue', valeur: this.latLngFin.lng().toFixed(5)};
|
1922 |
jpm |
907 |
champs.push(longitudeFinRue);
|
|
|
908 |
}
|
2408 |
jpm |
909 |
|
1922 |
jpm |
910 |
$('.obs-chp-etendu').each(function() {
|
|
|
911 |
var valeur = $(this).val(),
|
|
|
912 |
cle = $(this).attr('name'),
|
|
|
913 |
label = $(this).data('label');
|
|
|
914 |
if (valeur != '') {
|
|
|
915 |
var chpEtendu = {cle: cle, label: label, valeur: valeur};
|
|
|
916 |
champs.push(chpEtendu);
|
|
|
917 |
}
|
|
|
918 |
});
|
|
|
919 |
return champs;
|
2701 |
mathias |
920 |
};
|