Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1491 | Rev 1551 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1491 Rev 1494
Line 1... Line 1...
1
<div class="onglet_contenu" id="repartition">
1
<div class="onglet_contenu" id="repartition">
2
	<? if (isset($repartition)) : ?>
2
	<? if (isset($repartition)) : ?>
3
	<div id="repartition">
3
	<div id="repartition">
4
		<h2>Chorologie départementale</h2>
4
		<h2>Chorologie départementale</h2>
5
		<object class="chorodep_svg" type="image/svg+xml"
5
		<object class="chorodep_svg" type="image/svg+xml"
6
			data="<?=$repartition['svgUrl']?>" class="svg"
6
			data="<?= $repartition['svgUrl']?>" class="svg"
7
			alt="<?=$repartition['pngUrl']?>"> </object>
7
			alt="<?= $repartition['pngUrl']?>"> </object>
8
		<div id="legende"
8
		<div id="legende"
9
			style="position: absolute; margin-top: -250px; margin-left: 20px;">
9
			style="position: absolute; margin-top: -250px; margin-left: 20px;">
10
			<h3>Légende</h3>
10
			<h3>Légende</h3>
11
			<br />
11
			<br />
12
			<? foreach ($repartition['legende'] as $id => $details) :?>
12
			<? foreach ($repartition['legende'] as $id => $details) :?>
13
			<div style="clear: left;">
13
			<div style="clear: left;">
14
				<div class="bloc_legende_repartition"
14
				<div class="bloc_legende_repartition"
15
					style="background: <?= $details['couleur']?>"></div>
15
					style="background: <?= $details['couleur']?>"></div>
16
				<div class="texte_legende_repartition">
16
				<div class="texte_legende_repartition">
17
					<b>
17
					<b>
18
						<?=$details['nom']?>
18
						<?= $details['nom']?>
19
					</b>
19
					</b>
20
				</div>
20
				</div>
21
			</div>
21
			</div>
22
			<? endforeach;	?>
22
			<? endforeach;	?>
23
		</div>
23
		</div>
24
		<div class="conteneur_lien_metadonnees">
24
		<div class="conteneur_lien_metadonnees">
25
			<?=$repartition['meta']['citation']?>
25
			<?= $repartition['meta']['citation']?>
26
			<span class="conteneur_lien_metadonnees"> <a
26
			<span class="conteneur_lien_metadonnees"> <a
27
				class="lien_metadonnees lien_popup"
27
				class="lien_metadonnees lien_popup"
28
				href="<?= $repartition['meta']['url']; ?>">Voir toutes les
28
				href="<?= $repartition['meta']['url']; ?>">Voir toutes les
29
					metadonnées</a>
29
					metadonnées</a>
30
			</span>
30
			</span>
Line 41... Line 41...
41
	<? if (isset($moissonnage)) : ?>
41
	<? if (isset($moissonnage)) : ?>
42
	<div id="moissonnage">
42
	<div id="moissonnage">
43
		<h2>Observations</h2>
43
		<h2>Observations</h2>
44
		<div class="conteneur_repartition_observations">
44
		<div class="conteneur_repartition_observations">
45
			<object id="repartition_observations" type="text/html"
45
			<object id="repartition_observations" type="text/html"
46
				data="<?=$moissonnage['mapUrl']?>" class="svg"
46
				data="<?= $moissonnage['mapUrl']?>" class="svg"
47
				alt="<?=$moissonnage['mapUrl']?>"
47
				alt="<?= $moissonnage['mapUrl']?>"
48
				style="width: 620px; height: 620px; overflow: none;"> </object>
48
				style="width: 620px; height: 620px; overflow: none;"> </object>
49
		</div>
49
		</div>
50
		<div id="legende" style="padding: 15px; margin-top: -25px;">
50
		<div id="legende" style="padding: 15px; margin-top: -25px;">
51
			<? foreach ($moissonnage['legende'] as $id => $details) :?>
51
			<? foreach ($moissonnage['legende'] as $id => $details) :?>
52
			<div style="clear: left;">
52
			<div style="clear: left;">
53
				<div class="bloc_legende_repartition"
53
				<div class="bloc_legende_repartition"
54
					style="background: <?=$details['couleur']?>"></div>
54
					style="background: <?= $details['couleur'] ?>"></div>
55
				<div>
55
				<div>
56
					<b>
56
					<b>
57
						<?=$details['nom']?> :
57
						<?= $details['nom']?> :
58
					</b>
58
					</b>
59
					<?=$details['description']?>
59
					<?= $details['description']?>
60
				</div>
60
				</div>
61
			</div>
61
			</div>
62
			<? endforeach;	?>
62
			<? endforeach;	?>
63
		</div>
63
		</div>
64
		<div id="carte_recalculer">
64
		<div id="carte_recalculer">
65
			<span>Une fois générée, cette carte est mise en cache.</span> <a
65
			<span>Une fois générée, cette carte est mise en cache.</span> <a
66
				href="#" id="lien_recalculer_carte">Recalculer la carte</a>
66
				href="#" id="lien_recalculer_carte">Recalculer la carte</a>
67
		</div>
67
		</div>
68
		<div id="carte_telechargement">
68
		<div id="carte_telechargement">
69
			<span>Télécharger la carte au format </span> <a
69
			<span>Télécharger la carte au format </span> <a
70
				href="<?=$moissonnage['mapTelechargementUrls']['png']; ?>">png</a>&nbsp;
70
				href="<?= $moissonnage['mapTelechargementUrls']['png']; ?>">png</a>&nbsp;
71
			<a href="<?=$moissonnage['mapTelechargementUrls']['html']; ?>">html</a>
71
			<a href="<?= $moissonnage['mapTelechargementUrls']['html']; ?>">html</a>
72
		</div>
72
		</div>
73
	</div>
73
	</div>
74
	<hr class="nettoyage" />
74
	<hr class="nettoyage" />
75
	<? endif;?>
75
	<? endif;?>