-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMap.php
More file actions
21 lines (16 loc) · 737 Bytes
/
Map.php
File metadata and controls
21 lines (16 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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 Wimborne, Zoom in for more detail. Every marker shows a venue for something, click on the marker for more info.<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($_GET['F'])) $Feat = $_GET['F'];
// echo "<button class=PurpButton onclick=ShowDirect()>Directions</button> (From the Square if it does not know your location)\n";
Init_Map(-1,0,17,$Feat);
dotail();
?>