1 |
fraynaud |
137 |
<?php |
2 |
|
|
// $Id: var.inc,v 1.3 2010-09-09 15:36:39 fraynaud Exp $ |
3 |
|
|
// parametrage |
4 |
|
|
// *** sig_point.php *** |
5 |
|
|
// generer une cle pour le site : http://code.google.com/intl/fr/apis/maps/signup.html |
6 |
|
|
$cle_google = "xxxxxxxxxxxxxxxxxxxx"; |
7 |
|
|
$fichier_jsons="json_lignes.php?obj="; |
8 |
|
|
$fichier_wkt="wkt_ligne.php"; |
9 |
|
|
//zoom par couche : zoom standard permettant un passage de zoom a l autre |
10 |
|
|
$zoom_osm_maj=18; |
11 |
|
|
$zoom_osm=14; |
12 |
|
|
$zoom_sat_maj=8; |
13 |
|
|
$zoom_sat=4; |
14 |
|
|
$zoom_bing_maj=8; |
15 |
|
|
$zoom_bing=4; |
16 |
|
|
// popup data contenuHTML |
17 |
|
|
$width_popup=200; |
18 |
|
|
$cadre_popup=1; |
19 |
|
|
$couleurcadre_popup="black"; |
20 |
|
|
$fontsize_popup=12; |
21 |
|
|
$couleurtitre_popup="black"; |
22 |
|
|
$weightitre_popup="bold"; |
23 |
|
|
$fond_popup="yellow"; |
24 |
|
|
$opacity_popup="0.7"; |
25 |
|
|
// image localisation maj ou consultation |
26 |
|
|
$img_maj="../img/punaise_sig.png"; |
27 |
|
|
$img_maj_hover="../img/punaise_hover.png"; |
28 |
|
|
$img_consult="../img/punaise_point.png"; |
29 |
|
|
$img_consult_hover="../img/punaise_point_hover.png"; |
30 |
|
|
$img_w=14; |
31 |
|
|
$img_h=32; |
32 |
|
|
$img_click="1.3";// multiplication hauteur et largeur image cliquee |
33 |
|
|
// *** SIG POINT CLASS |
34 |
|
|
$contenu_etendue[0]= array('4.5868,43.6518,4.6738,43.7018', |
35 |
|
|
'4.701,43.3966,4.7636,43.4298', |
36 |
|
|
'4.71417,43.64,4.72994,43.65166', |
37 |
|
|
'4.72345,43.55348,4.73134,43.55932', |
38 |
|
|
'5.2094,43.4136,5.3345,43.4759' |
39 |
|
|
); |
40 |
|
|
$contenu_etendue[1]= array('agglomeration', |
41 |
|
|
'salin de giraud', |
42 |
|
|
'raphele', |
43 |
|
|
'Mas thibert', |
44 |
|
|
'vitrolles' |
45 |
|
|
); |
46 |
|
|
$contenu_epsg[0] = array("","EPSG:2154","EPSG:27563"); |
47 |
|
|
$contenu_epsg[1] = array("choisir la projection",'lambert93','lambertSud'); |
48 |
|
|
?> |