31 |
aurelien |
1 |
<!-- ODS_SAISIE - DEBUT FICHE STATION -->
|
|
|
2 |
<div id="fiche_station">
|
|
|
3 |
<h2 id="titre_station"> <?= $infos_station['nom'] ?></h2>
|
|
|
4 |
|
|
|
5 |
<div class="element_fiche">
|
|
|
6 |
<span class="intitule_fiche">Commune / ville :</span>
|
|
|
7 |
<span class="valeur_fiche"> <?= $infos_station['commune'] ?> </span>
|
|
|
8 |
</div>
|
|
|
9 |
|
|
|
10 |
<div class="element_fiche">
|
|
|
11 |
<span class="intitule_fiche">Milieu :</span>
|
|
|
12 |
<span class="valeur_fiche"> <?= $infos_station['milieu'] ?> </span>
|
|
|
13 |
</div>
|
102 |
aurelien |
14 |
|
|
|
15 |
<div class="element_fiche">
|
|
|
16 |
<span class="intitule_fiche">Altitude :</span>
|
|
|
17 |
<span class="valeur_fiche"> <?= $infos_station['altitude'] ?> m </span>
|
|
|
18 |
</div>
|
31 |
aurelien |
19 |
|
102 |
aurelien |
20 |
<!-- <p> <?= $infos_station['description']; ?> </p> -->
|
31 |
aurelien |
21 |
|
|
|
22 |
<div id="conteneur_liens_lat_lon" class="element_fiche" >
|
|
|
23 |
<span class="intitule_fiche">Latitude :</span>
|
|
|
24 |
<span id="station_lat" class="valeur_fiche"> <?= $infos_station['latitude'] ?> </span>
|
|
|
25 |
|
|
|
26 |
<span class="intitule_fiche">Longitude :</span>
|
|
|
27 |
<span id="station_lon" class="valeur_fiche"> <?= $infos_station['longitude'] ?> </span>
|
|
|
28 |
</div>
|
|
|
29 |
|
|
|
30 |
<div class="conteneur_carte element_fiche" >
|
|
|
31 |
<div id="map_canvas" style="width:100%; height:100%"></div>
|
|
|
32 |
</div>
|
|
|
33 |
|
56 |
aurelien |
34 |
<form class="form_afficher_modification" method="post" action="<?= Liens::getUrlFormulaireModificationStation($id_station); ?>" id="form_afficher_modification">
|
31 |
aurelien |
35 |
<input class="droite gros_bouton_validation" type="submit" value="Modifier" />
|
|
|
36 |
</form>
|
|
|
37 |
</div>
|
|
|
38 |
<!-- ODS_SAISIE - FIN FICHE STATION -->
|