Rev 56 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<!-- ODS_SAISIE - DEBUT FICHE STATION -->
<div id="fiche_station">
<h2 id="titre_station"> <?= $infos_station['nom'] ?></h2>
<div class="element_fiche">
<span class="intitule_fiche">Commune / ville :</span>
<span class="valeur_fiche"> <?= $infos_station['commune'] ?> </span>
</div>
<div class="element_fiche">
<span class="intitule_fiche">Milieu :</span>
<span class="valeur_fiche"> <?= $infos_station['milieu'] ?> </span>
</div>
<div class="element_fiche">
<span class="intitule_fiche">Altitude :</span>
<span class="valeur_fiche"> <?= $infos_station['altitude'] ?> m </span>
</div>
<!-- <p> <?= $infos_station['description']; ?> </p> -->
<div id="conteneur_liens_lat_lon" class="element_fiche" >
<span class="intitule_fiche">Latitude :</span>
<span id="station_lat" class="valeur_fiche"> <?= $infos_station['latitude'] ?> </span>
<span class="intitule_fiche">Longitude :</span>
<span id="station_lon" class="valeur_fiche"> <?= $infos_station['longitude'] ?> </span>
</div>
<div class="conteneur_carte element_fiche" >
<div id="map_canvas" style="width:100%; height:100%"></div>
</div>
<form class="form_afficher_modification" method="post" action="<?= Liens::getUrlFormulaireModificationStation($id_station); ?>" id="form_afficher_modification">
<input class="droite gros_bouton_validation" type="submit" value="Modifier" />
</form>
</div>
<!-- ODS_SAISIE - FIN FICHE STATION -->