Rev 247 | Rev 273 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
var tableau_couleurs = {"Particulier": "#A9582B", "Établissement scolaire" :"#8DC7B8",
"Association": "#ED9355","Professionnel": "#A7BD5B",
"Autre": "#FFC730","Inconnu": "#0000FF"};
var infowindow = new google.maps.InfoWindow();
function getUrlBaseJrest() {
return 'http://localhost/obs_saisons/applications/jrest/';
}
function initialiserCarte() {
if($('#map_canvas').length == 0) {
return;
}
var latlng = new google.maps.LatLng(47.0504, 2.2347);
var myOptions = {
zoom: 5,
center: latlng,
mapTypeId: google.maps.MapTypeId.HYBRID
};
map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions);
$('.lien_vers_profil').live('click', function(event) {
event.preventDefault();
window.open($(this).attr('href'));
return false;
});
obtenirStations();
}
function obtenirStations() {
$.get(getUrlBaseJrest()+'OdsExport/ExportStationJson/', function(data) {
var infos_stations = data.stations;
var stats = data.stats;
for(i in infos_stations) {
creerEtAjouterMarqueur(i, infos_stations[i]);
}
mettreAJourStats(stats);
});
}
function obtenirImagePourChaineCouleur(chaine_couleur) {
chaine_couleur = encodeURIComponent(chaine_couleur);
var image = getUrlBaseJrest()+"OdsMarqueur/point?couleurs="+chaine_couleur;
return image;
}
function mettreAJourStats(stats) {
for(i in stats) {
if(i != 'total') {
var id_legende = '#type_'+i.removeDiacritics().replace(' ','_');
var legende = $(id_legende).text();
$(id_legende).text(legende+' ('+stats[i]+')');
} else {
$('#conteneur_nb_stations').text(stats[i]+' stations au total');
}
}
}
function creerEtAjouterMarqueur(id_marqueur, infos_station) {
latlng = new google.maps.LatLng(infos_station['latitude'],infos_station['longitude']);
var chaine_couleur = tableau_couleurs[infos_station['type_participant']];
var image = obtenirImagePourChaineCouleur(chaine_couleur);
var nom_station = infos_station['nom'];
var marqueur_station = new google.maps.Marker({
position: latlng,
icon:image,
title:nom_station,
optimized: true
});
google.maps.event.addListener(marqueur_station, 'click', function() {
contenu_fenetre = formaterContenuFenetre(infos_station);
infowindow.close();
infowindow.content = contenu_fenetre;
infowindow.open(map,this);
});
marqueur_station.setDraggable(false);
marqueur_station.setClickable(true);
marqueur_station.setMap(map);
}
function formaterContenuFenetre(infos_station) {
var contenu_fenetre = "";
contenu_fenetre = "<h3> "+infos_station['nom']+"</h3>";
contenu_fenetre += '<div class="infos_participant"> Participant : '+construireUrlProfilParticipant(infos_station['participant'])+'</div>';
contenu_fenetre += '<div class="infos_commune"> ';
if(infos_station['nom_commune'] != null && infos_station['nom_commune'] != "") {
contenu_fenetre += 'Commune : '+infos_station['nom_commune'];
}
if(infos_station['code_commune'] != null && infos_station['code_commune'] != "") {
contenu_fenetre += ' ('+infos_station['code_commune']+')';
}
contenu_fenetre += '</div>';
contenu_fenetre += '<div class="infos_altitude"> Altitude : '+infos_station['altitude']+' m</div>';
return contenu_fenetre;
}
function genererLegende() {
chaine_legende = '<div class="critere" id="legende">';
for(i in tableau_couleurs) {
chaine_legende += '<span class="legende" style="background-color:'+tableau_couleurs[i]+'"></span>';
chaine_legende += '<label id="type_'+i.removeDiacritics().replace(' ','_')+'">'+i+'</label><br />';
}
chaine_legende += '</div>';
$("#conteneur_legende").html(chaine_legende);
}
function obtenirImagePourChaineCouleur(chaine_couleur) {
chaine_couleur = encodeURIComponent(chaine_couleur);
var image = getUrlBaseJrest()+"OdsMarqueur/point?couleurs="+chaine_couleur;
return image;
}
function construireUrlProfilParticipant(participant) {
if(participant['id'] == null && participant['nom'] == null) {
return "anonyme";
}
var id = participant['id'];
if(participant['nom'] == null || participant['nom'] == "null") {
var pseudo = participant['id'];
} else {
var pseudo = participant['nom'];
}
return '<a class="lien_vers_profil" href="http://obs-saisons.fr/user/'+id+'"> '+pseudo+' </a>';
}
$('#map_canvas').ready(function() {
initialiserCarte();
genererLegende();
});
String.prototype.removeDiacritics = function() {
var diacritics = [
[/[\300-\306]/g, 'A'],
[/[\340-\346]/g, 'a'],
[/[\310-\313]/g, 'E'],
[/[\350-\353]/g, 'e'],
[/[\314-\317]/g, 'I'],
[/[\354-\357]/g, 'i'],
[/[\322-\330]/g, 'O'],
[/[\362-\370]/g, 'o'],
[/[\331-\334]/g, 'U'],
[/[\371-\374]/g, 'u'],
[/[\321]/g, 'N'],
[/[\361]/g, 'n'],
[/[\307]/g, 'C'],
[/[\347]/g, 'c'],
];
var s = this;
for (var i = 0; i < diacritics.length; i++) {
s = s.replace(diacritics[i][0], diacritics[i][1]);
}
return s;
}