Correction affichage carte des établissements, principalement pour IE6, issue #0000193
This commit is contained in:
parent
3d410a0239
commit
009436cf6b
@ -229,7 +229,9 @@ foreach ($etabs as $i => $etab) {
|
|||||||
$titre .= 'Enseigne : '.$etab['Enseigne'].'<br/>';
|
$titre .= 'Enseigne : '.$etab['Enseigne'].'<br/>';
|
||||||
}
|
}
|
||||||
|
|
||||||
$texte = $etab['Adresse'].'<br/>';
|
$texte = '';
|
||||||
|
$texte .= 'Etablissement : '.$etab['Nic'].'<br/>';
|
||||||
|
$texte .= $etab['Adresse'].'<br/>';
|
||||||
$adresse = $etab['Adresse'].' ';
|
$adresse = $etab['Adresse'].' ';
|
||||||
if ($etab['Adresse2'] <> '') {
|
if ($etab['Adresse2'] <> '') {
|
||||||
$texte .= $etab['Adresse2'].'<br/>';
|
$texte .= $etab['Adresse2'].'<br/>';
|
||||||
@ -246,15 +248,17 @@ foreach ($etabs as $i => $etab) {
|
|||||||
$photo = 'http://cbk0.google.com/cbk?output=thumbnail&w=150&h=69&ll='.
|
$photo = 'http://cbk0.google.com/cbk?output=thumbnail&w=150&h=69&ll='.
|
||||||
$mmap->latitudeDec.','.
|
$mmap->latitudeDec.','.
|
||||||
$mmap->longitudeDec;
|
$mmap->longitudeDec;
|
||||||
$texte = '<img src='.$photo.' /><br/>'.$texte;
|
|
||||||
|
|
||||||
$adresse .= $etab['CP'].' '.$etab['Ville'];
|
$adresse .= $etab['CP'].' '.$etab['Ville'];
|
||||||
|
|
||||||
|
$texte .= '<img src='.$photo.' width=\"155\" height=\"74\" /><br/>';
|
||||||
$texte .= '<i>'.$etab['NafEtab'].' : '.$etab['NafEtabLib'].'</i>';
|
$texte .= '<i>'.$etab['NafEtab'].' : '.$etab['NafEtabLib'].'</i>';
|
||||||
|
|
||||||
$icone = $urlimg.'img/icones/'.iconeDuMarqueur($etab['NafEtab'],
|
$icone = $urlimg.'img/icones/'.iconeDuMarqueur($etab['NafEtab'],
|
||||||
$etab['Siege'],
|
$etab['Siege'],
|
||||||
$etab['Actif']);
|
$etab['Actif']);
|
||||||
|
|
||||||
|
//TODO: Gérer si l'image n'existe pas
|
||||||
$marqueurs[$j] = array($mmap->latitudeDec,
|
$marqueurs[$j] = array($mmap->latitudeDec,
|
||||||
$mmap->longitudeDec,
|
$mmap->longitudeDec,
|
||||||
$titre, $texte, $type, $icone);
|
$titre, $texte, $type, $icone);
|
||||||
@ -288,7 +292,7 @@ if (count($marqueurs) > 1) {
|
|||||||
<?=$marqueurs[0][1]?>),
|
<?=$marqueurs[0][1]?>),
|
||||||
mapTypeId: google.maps.MapTypeId.ROADMAP
|
mapTypeId: google.maps.MapTypeId.ROADMAP
|
||||||
}
|
}
|
||||||
var map = new google.maps.Map(document.getElementById("carte"), myOptions);
|
var map = new google.maps.Map(document.getElementById('carte'), myOptions);
|
||||||
|
|
||||||
<?php for ($i = 0; $i < count($marqueurs); ++$i) { ?>
|
<?php for ($i = 0; $i < count($marqueurs); ++$i) { ?>
|
||||||
var marker = new google.maps.Marker({
|
var marker = new google.maps.Marker({
|
||||||
@ -300,7 +304,7 @@ if (count($marqueurs) > 1) {
|
|||||||
});
|
});
|
||||||
google.maps.event.addListener(marker, 'click', function() {
|
google.maps.event.addListener(marker, 'click', function() {
|
||||||
var infowindow = new google.maps.InfoWindow({
|
var infowindow = new google.maps.InfoWindow({
|
||||||
content: "<?=$marqueurs[$i][3]?>",
|
content: "<?=$marqueurs[$i][3]?>"
|
||||||
});
|
});
|
||||||
var pos = new google.maps.Marker({
|
var pos = new google.maps.Marker({
|
||||||
position: new google.maps.LatLng(<?=$marqueurs[$i][0]?>,
|
position: new google.maps.LatLng(<?=$marqueurs[$i][0]?>,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user