Subversion Repositories eFlore/Applications.coel

Rev

Rev 1826 | Rev 1834 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1646 alex 1
var map = null,
2
optionsCoucheOSM = {
3
	attribution: 'Map data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors,'
4
	+ ' <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>',
5
	maxZoom: 18
6
},
7
optionsCoucheGoogle = {
8
	attribution: 'Map data &copy;'+new Date().getFullYear()+' <a href="http://maps.google.com">Google</a>',
9
	maxZoom: 18
10
},
1809 mathias 11
coucheOSM = new L.TileLayer("http://osm.tela-botanica.org/tuiles/osmfr/{z}/{x}/{y}.png",
12
		optionsCoucheOSM),
1646 alex 13
coucheSatellite = new L.TileLayer("http://mt1.google.com/vt/lyrs=y@218131653&hl=fr&src=app&x={x}&y={y}&z={z}",
14
	optionsCoucheGoogle),
15
optionsCarte = {
16
	center : new L.LatLng(46, 2),
17
	zoom : 6,
1797 aurelien 18
	layers : [coucheOSM]
1646 alex 19
};
20
 
21
var xmlHttpRequest = null,
22
	nombreCollections = 0,
23
	collections = new Array(),
24
	structures = new Array(),
1826 aurelien 25
	coucheStructures = new L.MarkerClusterGroup({
26
		disableClusteringAtZoom : 10
27
	}),
1646 alex 28
	infoBulle = null,
29
	chargementEnCours = false;
30
 
31
 
32
$(document).ready(function() {
1701 raphael 33
	dimensionnerCarte();
34
	initialiserCarte();
35
	initialiserPanneauControle();
36
 
37
	$.ajax({
38
		dataType: "json",
1778 mathias 39
		url: urlWebService + "CoelRecherche/Nombre/*/*/*/*/*/*/*/" + departement + "/*/",
1788 aurelien 40
		data: { formatRetour: "text/plain", pays: pays},
1701 raphael 41
		async: false
42
	}).complete(function(msg) {
43
		if (! estStatutRequeteOK(msg.status)) {
44
			alert(msg.responseText);
45
			return;
46
		}
47
		nombreCollections = parseInt(msg.responseText);
48
	});
49
 
50
	chargerStructures();
1646 alex 51
});
52
 
53
$(window).resize(function() {
54
	dimensionnerCarte();
55
});
56
 
57
function dimensionnerCarte() {
58
	$("#map").width($(window).width());
59
	$("#map").height($(window).height());
60
}
61
 
62
function initialiserCarte() {
63
	map = L.map('map', optionsCarte);
1797 aurelien 64
	coucheOSM.addTo(map);
1646 alex 65
	coucheStructures.addTo(map);
66
	map.on('zoomend', function() {
67
		// controle sur le niveau de zoom uniquement a la fin du placement des structures sur la carte
68
		if (chargementEnCours) {
69
			chargementEnCours = false;
70
			verifierZoom();
71
		}
72
	});
73
}
74
 
75
function initialiserPanneauControle() {
76
	var baseMaps = {
77
		"Plan" : coucheOSM,
78
		"Satellite" : coucheSatellite
79
	};
80
	var overlayMaps = {
81
		"Structures" : coucheStructures
82
	};
83
	L.control.layers(baseMaps, overlayMaps).addTo(map);
84
}
85
 
86
 
87
function recupererValeurNombreCollections() {
88
}
89
 
90
function chargerStructures() {
91
	if (requeteEnCours()) {
92
		window.setTimeout('chargerStructures()', 400);
1703 raphael 93
		return;
1646 alex 94
	}
1703 raphael 95
 
96
	chargementEnCours = true;
97
	$.ajax({
98
		dataType: "json",
1778 mathias 99
		url: urlWebService + "CoelRecherche/ParDefaut/*/*/*/*/*/*/*/" + departement + "/*/",
1788 aurelien 100
		data: { limit: nombreCollections, pays: pays},
1703 raphael 101
		async: true
102
	}).complete(function(msg) {
103
		if (!estStatutRequeteOK(msg.status)) {
104
			alert(msg.responseText);
105
			return;
106
		}
107
		collections = eval("(function(){return " + msg.responseText + ";})()");
108
		ordonnerCollectionsParStructures();
109
		chargerLocalisations();
110
	});
1646 alex 111
}
112
 
113
function requeteEnCours() {
114
	return (xmlHttpRequest != null && xmlHttpRequest.readyState != 4);
115
}
116
 
1701 raphael 117
function estStatutRequeteOK(x_status) {
118
	return (x_status == 200 || x_status == 304 || x_status == 0);
1646 alex 119
}
120
 
121
function ordonnerCollectionsParStructures() {
122
	for (var index = 0; index < collections.length; index ++) {
123
		var indexStructure = 0;
124
		while (indexStructure < structures.length && structures[indexStructure].id != collections[index].cs_id_structure) {
125
			indexStructure ++;
126
		}
127
		if (indexStructure == structures.length) {
128
			var structure = {
129
				"id"    : collections[index].cs_id_structure,
130
				"nom"   : collections[index].cs_nom,
131
				"ville" : collections[index].cs_ville,
132
				"code_postal" : collections[index].cs_code_postal,
133
				"longitude"   : collections[index].cs_longitude,
134
				"latitude"    : collections[index].cs_latitude,
135
				"collections" : new Array()
136
			};
137
			structures.push(structure);
138
		}
139
		var collection = {
140
			"id"  : collections[index].cc_id_collection,
141
			"nom" : collections[index].cc_nom
142
		};
143
		structures[indexStructure].collections.push(collection);
144
	}
145
}
146
 
147
function chargerLocalisations() {
148
	var nombreStructuresAffichees = 0;
149
	for (var index = 0; index < structures.length; index ++) {
150
		if ((structures[index].longitude != null && structures[index].longitude != "")
151
			&& (structures[index].latitude != null && structures[index].latitude != "")) {
152
			var existeMarqueur = rechercherExistenceMarqueur(structures[index].longitude, structures[index].latitude);
1822 aurelien 153
			if (existeMarqueur == null) {
1646 alex 154
				creerMarqueur(structures[index]);
155
				nombreStructuresAffichees ++;
1822 aurelien 156
			} else {
157
				ajouterStructureAMarqueur(existeMarqueur, structures[index]);
1646 alex 158
			}
159
		}
160
	}
161
	if (nombreStructuresAffichees > 0) {
162
		map.fitBounds(coucheStructures.getBounds());
163
	}
164
}
165
 
166
function rechercherExistenceMarqueur(longitude, latitude) {
1822 aurelien 167
	var existeMarqueur = null;
1646 alex 168
	coucheStructures.eachLayer(function(layer) {
169
		if (layer.getLatLng().lat == latitude && layer.getLatLng().lng == longitude) {
1822 aurelien 170
			existeMarqueur = layer;
1646 alex 171
		}
172
	});
173
	return existeMarqueur;
174
}
175
 
176
function creerMarqueur(structure) {
177
	var latlng = new L.LatLng(structure.latitude, structure.longitude);
178
	var marqueur = new L.Marker(latlng, {
1826 aurelien 179
		structures : [structure],
180
		structuresNom : structure.nom
1646 alex 181
	});
182
	marqueur.on('click', surClickMarqueur);
1826 aurelien 183
	marqueur.on('mouseover', construireToolTipMarqueur);
1646 alex 184
	coucheStructures.addLayer(marqueur);
1822 aurelien 185
}
1664 raphael 186
 
1826 aurelien 187
function construireToolTipMarqueur(event) {
1822 aurelien 188
	// changer la propriété title du marqueur ne fonctionne pas
189
	// en dehors du constructeur (mais cette méthode est-elle pérenne ?)
1826 aurelien 190
	// le clustering n'affichant pas tous les marqueurs, on doit remplir le tooltip
191
	event.target._icon.title = event.target.options.structuresNom;
1646 alex 192
}
193
 
1826 aurelien 194
function ajouterStructureAMarqueur(marqueur, structure) {
195
	marqueur.options.structures.push(structure);
196
	marqueur.options.structuresNom += "\n"+structure.nom;
197
}
198
 
1646 alex 199
function surClickMarqueur(event) {
200
	var latlng = event.target.getLatLng();
1822 aurelien 201
	var structures = event.target.options.structures;
202
	afficherCollections(structures, latlng);
1646 alex 203
}
204
 
1822 aurelien 205
function afficherCollections(structures, latlng) {
1646 alex 206
	masquerInfoBulle();
207
	infoBulle = new L.Popup({maxWidth : 0.25*$(window).width(), maxHeight : 0.35*$(window).height()});
208
	infoBulle.setLatLng(latlng);
209
	infoBulle.openOn(map);
1822 aurelien 210
	remplirContenuPopup(structures);
1646 alex 211
	$("a").css("color", "#598000");
212
	map.setView(latlng, map.getZoom());
213
}
214
 
215
function masquerInfoBulle() {
216
	if (infoBulle != null && map.hasLayer(infoBulle)) {
217
		map.removeLayer(infoBulle);
218
	}
219
	infoBulle = null;
220
}
221
 
1822 aurelien 222
function remplirContenuPopup(structures) {
1646 alex 223
	$("#structure").empty();
1822 aurelien 224
	var entetePopup = {
225
		"ville" : structures[0].ville,
226
		"code_postal" : structures[0].code_postal
227
	}
228
	$("#tpl-structure-entete").tmpl(entetePopup).appendTo($("#structure"));
229
 
230
	$.each(structures, function(index, structure) {
231
		var structureAjout = {
232
			"id"    : structure.id,
233
			"nom"   : structure.nom,
234
			"ville" : structure.ville,
235
			"code_postal" : structure.code_postal,
236
			"collections" : structure.collections
237
		};
238
		$("#tpl-structure").tmpl(structureAjout).appendTo($("#structure"));
239
	});
240
 
1646 alex 241
	infoBulle.setContent($("#structure").html());
242
}
243
 
244
function verifierZoom() {
245
	if(map.getZoom() > 13) {
246
		map.setZoom(13);
247
	}
248
}