Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 1548 → Rev 1549

/trunk/client/bottin/carto_google.php
19,7 → 19,7
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: carto_google.php,v 1.2 2007-06-25 09:59:03 alexandre_tb Exp $
// CVS : $Id: carto_google.php,v 1.3 2007-08-27 12:35:13 alexandre_tb Exp $
/**
* Cartographie google du bottin
*
28,7 → 28,7
*@author Alexandre Granier <alexandre@tela-botanica.org>
//Autres auteurs :
*@copyright Tela-Botanica 2000-2007
*@version $Revision: 1.2 $ $Date: 2007-06-25 09:59:03 $
*@version $Revision: 1.3 $ $Date: 2007-08-27 12:35:13 $
// +------------------------------------------------------------------------------------------------------+
*/
 
45,7 → 45,7
include_once INS_CHEMIN_APPLI.'bibliotheque/inscription.class.php';
}
 
$GLOBALS['ins_config']['ic_google_key'] = 'http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAh5MiVKCtb2JEli5I8GRSIhRbQSKaqiLzq_1FqOv3C6TjQ0qw7BS-0YnGUkxsLmj6a2a1z7YsKC-pYg';
$GLOBALS['ins_config']['ic_google_key'] = 'http://maps.google.com/maps?file=api&amp;v=2&amp;key='.INS_GOOGLE_KEY;
GEN_stockerFichierScript('googleMapScript', $GLOBALS['ins_config']['ic_google_key']);
 
 
55,6 → 55,10
$requete = 'select * from annuaire where a_est_structure=1';
$resultat = $GLOBALS['ins_db']->query ($requete);
 
if (DB::isError ($resultat)) {
echo $resultat->getMessage().'<br />'.$resultat->getDebugInfo();
}
/*
if ($resultat->numRows() != 0) {
$script_marker = '';
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
63,6 → 67,37
."\t".'map.addOverlay(createMarker(point, \''.preg_replace ('/\n/', '', info ($ligne['a_id'], 'info')).'\'));'."\n";
}
}*/
$donnees = array();
$script_marker = '';
if ($resultat->numRows() != 0) {
$script_marker = '';
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
if ($ligne['a_latitude'] == 0 && $ligne['a_longitude'] == 0) continue;
$cle = $ligne['a_latitude'].'-'.$ligne['a_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['a_latitude'].','.$chaine['a_longitude'].');'."\n"
."\t".'map.addOverlay(createMarker(point, \''.
preg_replace ('/\n/', '', str_replace ("\r\n", '',
str_replace ("'", "\'", info($chaine['a_id'], 'info')))).'\'));'."\n";
} else { // Cas 2 plusieurs entrees
$tableau_id = array();
$script_marker .= "\t".'point = new GLatLng('.$val['a_latitude'].','.$val['a_longitude'].');'."\n"
."\t".'map.addOverlay(createMarker(point, \'';
foreach ($valeur as $val) {
$script_marker .= preg_replace ('/\n/', '', str_replace ("\r\n", '',
str_replace ("'", "\'", info($val['a_id'], 'info'))));
}
$script_marker .= '\'));'."\n";
}
}
} else {
$script_marker = '';
}
 
$script = '
70,9 → 105,41
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 = 300;
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 marker = new GMarker(point);
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);
});
80,6 → 147,7
}
function load() {
if (GBrowserIsCompatible()) {
setWinHW();
map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
89,7 → 157,7
// On centre la carte sur le languedoc roussillon
center = new GLatLng(43.84245116699036, 3.768310546875);
map.setCenter(center, 7);
map.setMapType(G_HYBRID_MAP);
' .
$script_marker.'
}
100,8 → 168,12
GEN_stockerCodeScript($script);
 
function afficherContenuCorps() {
// Appel du template
include_once INS_CHEMIN_APPLI.'bibliotheque/bottin.class.php';
$template = inscription::getTemplate(INS_TEMPLATE_CARTO_GOOGLE_ACCUEIL, 1);
$carte = '<div id="map" style="width: 600px; height: 450px"></div>';
$res = str_replace ('{CARTE}', $carte, $template);
$res = '<div id="map" style="width: 600px; height: 450px"></div>';
return $res;
}
 
108,6 → 180,9
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.2 2007-06-25 09:59:03 alexandre_tb
* ajout de carte_google, mise en place des templates avec api/formulaire, configuration de multiples inscriptions, ajout de modele pour les mails
*
* Revision 1.1 2007-06-01 13:39:14 alexandre_tb
* version initiale
*