Subversion Repositories Applications.bazar

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
253 alexandre_ 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | Lesser General Public License for more details.                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
19
// | License along with this library; if not, write to the Free Software                                  |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
22
// CVS : $Id: bazar.carte_google.php,v 1.1 2007-06-04 15:26:57 alexandre_tb Exp $
23
/**
24
*
25
*@package bazar
26
//Auteur original :
27
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
28
//Autres auteurs :
29
*@copyright     Tela-Botanica 2000-2007
30
*@version       $Revision: 1.1 $
31
// +------------------------------------------------------------------------------------------------------+
32
*/
33
 
34
// +------------------------------------------------------------------------------------------------------+
35
// |                                            ENTETE du PROGRAMME                                       |
36
// +------------------------------------------------------------------------------------------------------+
37
 
38
 
39
include_once 'configuration/baz_config.inc.php';
40
include_once BAZ_CHEMIN_APPLI.'bibliotheque/bazar.fonct.php';
41
// Inclusion d'une classe personnalise si elle existe
42
 
43
GEN_stockerFichierScript('googleMapScript', 'http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAh5MiVKCtb2JEli5I8GRSIhRbQSKaqiLzq_1FqOv3C6TjQ0qw7BS-0YnGUkxsLmj6a2a1z7YsKC-pYg');
44
 
45
$GLOBALS['_BAZAR_']['id_typeannonce']=$GLOBALS['_GEN_commun']['info_application']->id_nature;
46
 
47
// requete sur le bazar pour recuperer les evenements
48
 
49
$requete = 'select * from bazar_fiche where ';
50
if ($GLOBALS['_BAZAR_']['id_typeannonce'] != '') $requete .= 'bf_ce_nature='.$GLOBALS['_BAZAR_']['id_typeannonce'] ;
51
$requete .= ' and bf_date_debut_validite_fiche<=now() and '.
52
			'bf_date_fin_validite_fiche>=now() and bf_statut_fiche=1';
53
$resultat = $GLOBALS['_BAZAR_']['db']->query ($requete);
54
 
55
if ($resultat->numRows() != 0) {
56
	$script_marker = '';
57
	while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
58
		$id_marker = $ligne['bf_id_fiche'];
59
		$script_marker .= "\t".'point = new GLatLng('.$ligne['bf_latitude'].','.$ligne['bf_longitude'].');'."\n"
60
				."\t".'map.addOverlay(createMarker(point, \''.
61
				preg_replace ('/\n/', '', str_replace ("'", "\'", baz_voir_fiche(0, $ligne['bf_id_fiche']))).'\'));'."\n";
62
	}
63
} else {
64
	$script_marker = '';
65
}
66
 
67
$script = '
68
    // Variables globales
69
    var map = null;
70
	var lat = document.getElementById("latitude");
71
    var lon = document.getElementById("longitude");
72
 
73
    function createMarker(point, chaine) {
74
	  	var marker = new GMarker(point);
75
	  	GEvent.addListener(marker, "click", function() {
76
	    	marker.openInfoWindowHtml(chaine);
77
	  	});
78
	  	return marker;
79
	}
80
    function load() {
81
    if (GBrowserIsCompatible()) {
82
      map = new GMap2(document.getElementById("map"));
83
      map.addControl(new GSmallMapControl());
84
	  map.addControl(new GMapTypeControl());
85
	  map.addControl(new GScaleControl());
86
	  map.enableContinuousZoom();
87
 
88
	  // On centre la carte sur le languedoc roussillon
89
	  center = new GLatLng(43.84245116699036, 3.768310546875);
90
      map.setCenter(center, 7);
91
 
92
      ' .
93
      $script_marker.'
94
    }
95
	};
96
	// Creates a marker at the given point with the given number label
97
 
98
';
99
GEN_stockerCodeScript($script);
100
 
101
function afficherContenuCorps() {
102
 
103
	$res = '<div id="map" style="width: 600px; height: 450px"></div>';
104
	return $res;
105
}
106
 
107
 
108
/* +--Fin du code ----------------------------------------------------------------------------------------+
109
*
110
* $Log: not supported by cvs2svn $
111
* +-- Fin du code ----------------------------------------------------------------------------------------+
112
*/