forked from waveney/chippenham
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMap.php
More file actions
executable file
·23 lines (18 loc) · 876 Bytes
/
Map.php
File metadata and controls
executable file
·23 lines (18 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
include_once("int/fest.php");
dohead("Festival Map");
include_once("int/MapLib.php");
include_once("int/ProgLib.php");
echo "<h2 class=subtitle>Festival Map</h2>";
echo "Zoom out to find " . Feature('FestHomeName','Wimborne') .
", Zoom in for more detail.<p>\n";
echo "<div id=MapWrap>";
echo "<div id=DirPaneWrap><div id=DirPane><div id=DirPaneTop></div><div id=Directions></div></div></div>";
echo "<div id=map></div></div>";
$Feat = 0;
if (isset($_REQUEST['F'])) $Feat = $_REQUEST['F'];
// echo "<button class=PurpButton onclick=ShowDirect()>Directions</button> (From the " . Feature('DirectionDefault','Square') . " if it does not know your location)\n";
Init_Map(-1,0,Feature('MapStartZoom',17),$Feat);
echo "Zoom out to find " . Feature('FestHomeName','Wimborne') .
", Zoom in for more detail.<p>\n";
dotail();