//Autres auteurs : *@copyright Tela-Botanica 2000-2007 *@version $Revision: 1.5 $ // +------------------------------------------------------------------------------------------------------+ */ // +------------------------------------------------------------------------------------------------------+ // | ENTETE du PROGRAMME | // +------------------------------------------------------------------------------------------------------+ include_once 'configuration/baz_config.inc.php'; include_once BAZ_CHEMIN_APPLI.'bibliotheque/bazar.fonct.php'; // Inclusion d'une classe personnalise si elle existe GEN_stockerFichierScript('googleMapScript', 'http://maps.google.com/maps?file=api&v=2&key='.BAZ_GOOGLE_KEY); if (defined('PAP_VERSION')) { //si on est dans Papyrus GEN_stockerStyleExterne( 'bazar_interne', 'client/bazar/bazar.interne.css'); } $GLOBALS['_BAZAR_']['id_typeannonce']=$GLOBALS['_GEN_commun']['info_application']->id_nature; // requete sur le bazar pour recuperer les evenements $requete = 'select * from bazar_fiche where '; if ($GLOBALS['_BAZAR_']['id_typeannonce'] != '') $requete .= 'bf_ce_nature in ('.$GLOBALS['_BAZAR_']['id_typeannonce'].') and ' ; $requete .= ' ((bf_date_debut_validite_fiche<=now() and bf_date_fin_validite_fiche>=now()) or (bf_date_fin_validite_fiche="0000-00-00"' . ' and date_add(bf_date_fin_evenement,interval 15 day)>now()))'. ' and bf_statut_fiche=1'; $resultat = $GLOBALS['_BAZAR_']['db']->query ($requete); if (DB::isError($resultat)) { return BOG_afficherErreurSql(__FILE__, __LINE__, $resultat->getMessage().'
'.$resultat->getDebugInfo(), $requete);echo $requete; } // Le code complique avec ces 2 tableaux sert // a ne pas mettre 2 points aux memes coordonnees // car dans ce cas la seul le second serait visible $donnees = array(); if ($resultat->numRows() != 0) { $script_marker = ''; while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) { if ($ligne['bf_latitude'] == 0 && $ligne['bf_longitude'] == 0) continue; $cle = $ligne['bf_latitude'].'-'.$ligne['bf_longitude']; $donnees[$cle][] = $ligne; } foreach ($donnees as $valeur) { // cas un : une seule entree pour le point de coordonnees if (count ($valeur) == 1) { $chaine = $valeur[0]; $script_marker .= "\t".'point = new GLatLng('.$chaine['bf_latitude'].','.$chaine['bf_longitude'].');'."\n" ."\t".'map.addOverlay(createMarker(point, \''.'
'. preg_replace ('/\n/', '', str_replace ("\r\n", '', str_replace ("'", "\'", baz_voir_fiche(0, $chaine['bf_id_fiche'])))).'
\'));'."\n"; } else { // Cas 2 plusieurs entrees $tableau_id = array(); foreach ($valeur as $val) { array_push ($tableau_id, $val['bf_id_fiche']); } $script_marker .= "\t".'point = new GLatLng('.$val['bf_latitude'].','.$val['bf_longitude'].');'."\n" ."\t".'map.addOverlay(createMarker(point, \''.'
'. preg_replace ('/\n/', '', str_replace ("\r\n", '', str_replace ("'", "\'", baz_voir_fiches(0, $tableau_id)))).'
\'));'."\n"; } } } else { $script_marker = ''; } $script = ' // Variables globales var map = null; var lat = document.getElementById("latitude"); var lon = document.getElementById("longitude"); // Pour gerer la taille var winW = 630, winH = 560; var deltaH = 220; var deltaW = 270; function setWinHW() { if (window.innerHeight) { winW = window.innerWidth - deltaW; winH = window.innerHeight - deltaH; } else { winW = document.documentElement.offsetWidth - 20 - deltaW; winH = document.documentElement.offsetHeight - 20 - deltaH ; } var me = document.getElementById("map"); if (me != null) { me.style.width= \'\' + winW + \'px\'; me.style.height= \'\' + winH + \'px\'; } } window.onresize = function () { setWinHW(); if (map) map.checkResize(); } function createMarker(point, chaine) { var icon = new GIcon(); icon.image = "http://connaisciences.fr/sites/connaisc/fr/images/marker.png"; icon.shadow = "http://www.google.com/mapfiles/shadow50.png"; icon.iconSize = new GSize(20, 34); icon.shadowSize = new GSize(37, 34); icon.iconAnchor = new GPoint(6, 34); icon.infoWindowAnchor = new GPoint(5, 1); var marker = new GMarker(point, icon); GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(chaine); }); return marker; } function load() { setWinHW(); if (GBrowserIsCompatible()) { map = new GMap2(document.getElementById("map")); map.addControl(new GSmallMapControl()); map.addControl(new GMapTypeControl()); map.addControl(new GScaleControl()); map.enableContinuousZoom(); // On centre la carte sur le languedoc roussillon center = new GLatLng('.BAZ_GOOGLE_CENTRE_LAT.', '.BAZ_GOOGLE_CENTRE_LON.'); map.setCenter(center, '.BAZ_GOOGLE_ALTITUDE.'); map.setMapType(G_HYBRID_MAP); ' . $script_marker.' } }; // Creates a marker at the given point with the given number label '; GEN_stockerCodeScript($script); function afficherContenuCorps() { include_once BAZ_CHEMIN_APPLI.'bibliotheque/bazarTemplate.class.php'; $modele = new bazarTemplate($GLOBALS['_BAZAR_']['db']); $html = $modele->getTemplate(BAZ_TEMPLATE_ACCUEIL_CARTE_GOOGLE, $GLOBALS['_BAZAR_']['langue']); $res = str_replace ('{CARTE}', '
', $html); return $res; } /* +--Fin du code ----------------------------------------------------------------------------------------+ * * $Log: not supported by cvs2svn $ * Revision 1.4 2007-08-27 12:27:34 alexandre_tb * mise en place d un icone personnalise * et de l affichage de plusieurs donnees sur un meme point * * Revision 1.3 2007-07-04 10:08:41 alexandre_tb * Appel du template carte_google * * Revision 1.2 2007-06-13 10:02:47 alexandre_tb * le carte s adapte a la taille du conteneur * * Revision 1.1 2007-06-04 15:26:57 alexandre_tb * version initiale * * +-- Fin du code ----------------------------------------------------------------------------------------+ */