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