From 53180fa94e95906400abb7a7979dec0a8764410a Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Sun, 29 Dec 2013 22:35:35 +0000 Subject: visability for channels and default route --- index.php | 126 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 63 insertions(+), 63 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index 32845d1..7281972 100644 --- a/index.php +++ b/index.php @@ -59,10 +59,10 @@ if($_SERVER['HTTP_HOST'] == 'dev-karte.ffgraz.net') { Elemente
aus-/einblenden
- - - - + + + + @@ -88,61 +88,61 @@ if($_SERVER['HTTP_HOST'] == 'dev-karte.ffgraz.net') {
 !Default
  
- - - - - - - - - - - - - - - - - - - - - - - - - - + + + +
 Kanaele undef.
+ + + + + +
 Alle 5GHz Kanaele
+ + + + + +
 Alle 2.4GHz Kanaele
+ + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 1 2 3
 4 5 6
 7 8 9
 10 11 12
 13
@@ -150,11 +150,11 @@ if($_SERVER['HTTP_HOST'] == 'dev-karte.ffgraz.net') {
-- cgit v1.2.3 From fc31517a03988f10e02ebe982cfd019f202f0ebf Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Mon, 30 Dec 2013 01:21:06 +0000 Subject: reenable login container --- index.php | 18 +++++++++--------- map.js | 1 - 2 files changed, 9 insertions(+), 10 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index 7281972..a21968c 100644 --- a/index.php +++ b/index.php @@ -158,15 +158,15 @@ if($_SERVER['HTTP_HOST'] == 'dev-karte.ffgraz.net') { ?> -
- Adresse suchen (Strassenname Nr. <, Ort>): -
-

- - -

-
-
+ + + + + + + + + diff --git a/map.js b/map.js index 602da68..7eb01ce 100644 --- a/map.js +++ b/map.js @@ -20,7 +20,6 @@ debug = function (log_txt) { function initialize(lat, lng, res) { debug("Initializing Funkfeuer Graz Map"); - $('#southeastcontainer').hide(); google.maps.visualRefresh=true; var mapOptions = { -- cgit v1.2.3 From 736522335971a165326b741632dbd5e1efdf6ec3 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Mon, 30 Dec 2013 02:41:22 +0000 Subject: cleanup --- index.php | 6 ------ map.js | 1 - 2 files changed, 7 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index a21968c..b462de0 100644 --- a/index.php +++ b/index.php @@ -10,12 +10,6 @@ if(empty($lat)) $lat=47.07102; if(empty($lng)) $lng=15.440; if(empty($res)) $res=15; -$apikey = 'unknownhost'; -if($_SERVER['HTTP_HOST'] == 'dev-karte.ffgraz.net') { - $apikey = 'ABQIAAAAZRu0cBQNp9TOBJp1i-DhohS9pf3riiZoWFmOpEuQ19If-UHZjhRHIGQIC00eY1H5H71yDqx-QzdyJA'; -} elseif($_SERVER['HTTP_HOST'] == 'dev-karte.graz.funkfeuer.at') { - $apikey = 'ABQIAAAAZRu0cBQNp9TOBJp1i-DhohSbKGG4yPVU7VmuBMuIIaQfSNuMAxRrbvJwWee4f-0iW-LpRZkkrl531Q'; -} ?> diff --git a/map.js b/map.js index 8f7a088..a248b1c 100644 --- a/map.js +++ b/map.js @@ -497,7 +497,6 @@ function addNewNodeText(point) { } function setNewMarker(point) { -// TODO: make this dragable?? var marker = new google.maps.Marker({position: point, icon: makeIcon('newnode')}); var infowindow = new google.maps.InfoWindow({ content: addNewNodeText(point) }); google.maps.event.addListener(infowindow,"closeclick",function () { marker.setMap(null); }); -- cgit v1.2.3