From bc0aac55c50260ae1dc26effc6323f37c6acc096 Mon Sep 17 00:00:00 2001 From: bfabiszewski Date: Thu, 25 Jul 2013 23:34:13 +0200 Subject: display comments in popups --- api_gmaps.js | 1 + api_openlayers.js | 1 + auth.php | 1 + getpositions.php | 7 ++++--- index.php | 2 +- main.css | 6 +++++- main.js | 2 ++ 7 files changed, 15 insertions(+), 5 deletions(-) diff --git a/api_gmaps.js b/api_gmaps.js index 968f9aa..26a787c 100755 --- a/api_gmaps.js +++ b/api_gmaps.js @@ -130,6 +130,7 @@ function setMarker(p,i,posLen) { '
'+lang_user+': '+p.username.toUpperCase()+'
'+lang_track+': '+p.trackname.toUpperCase()+ '
'+ '
'+ + ((p.comments != null)?'
'+p.comments+'
':'')+ '
'+lang_time+': '+p.dateoccured+'
'+ ((p.speed != null)?''+lang_speed+': '+(p.speed.toKmH()*factor_kmh)+' '+unit_kmh+'
':'')+ ((p.altitude != null)?''+lang_altitude+': '+(p.altitude*factor_m).toFixed()+' '+unit_m+'
':'')+'
'+ diff --git a/api_openlayers.js b/api_openlayers.js index 228eff5..87f0abf 100755 --- a/api_openlayers.js +++ b/api_openlayers.js @@ -162,6 +162,7 @@ function setMarker(p,i,posLen) { '
'+lang_user+': '+p.username.toUpperCase()+'
'+lang_track+': '+p.trackname.toUpperCase()+ '
'+ '
'+ + ((p.comments != null)?'
'+p.comments+'
':'')+ '
'+lang_time+': '+p.dateoccured+'
'+ ((p.speed != null)?''+lang_speed+': '+(p.speed.toKmH()*factor_kmh)+' '+unit_kmh+'
':'')+ ((p.altitude != null)?''+lang_altitude+': '+(p.altitude*factor_m).toFixed()+' '+unit_m+'
':'')+'
'+ diff --git a/auth.php b/auth.php index c7d881b..c3ac8c5 100755 --- a/auth.php +++ b/auth.php @@ -29,6 +29,7 @@ if ($mysqli->connect_errno) { printf("Connect failed: %s\n", $mysqli->connect_error); exit(); } +$mysqli->set_charset("utf8"); $auth = NULL; if ($require_authentication) { /* authentication */ diff --git a/getpositions.php b/getpositions.php index 2f22aa0..9a3acc1 100755 --- a/getpositions.php +++ b/getpositions.php @@ -36,16 +36,16 @@ function haversine_distance($lat1, $lon1, $lat2, $lon2) { if ($userid) { if ($trackid) { // get all track data - $query = $mysqli->prepare("SELECT positions.ID,Latitude,Longitude,Altitude,Speed,Angle,DateOccurred,username,trips.Name,trips.ID FROM positions LEFT JOIN users ON (positions.FK_Users_ID=users.ID) LEFT JOIN trips ON (positions.FK_Trips_ID=trips.ID) WHERE positions.FK_Users_ID=? AND positions.FK_Trips_ID=? ORDER BY positions.DateOccurred"); + $query = $mysqli->prepare("SELECT positions.ID,positions.Latitude,positions.Longitude,positions.Altitude,positions.Speed,positions.Angle,positions.DateOccurred,positions.Comments,users.username,trips.Name,trips.ID FROM positions LEFT JOIN users ON (positions.FK_Users_ID=users.ID) LEFT JOIN trips ON (positions.FK_Trips_ID=trips.ID) WHERE positions.FK_Users_ID=? AND positions.FK_Trips_ID=? ORDER BY positions.DateOccurred"); $query->bind_param('ii', $userid, $trackid); } else { // get data only for latest point - $query = $mysqli->prepare("SELECT positions.ID,Latitude,Longitude,Altitude,Speed,Angle,DateOccurred,username,trips.Name,trips.ID FROM positions LEFT JOIN users ON (positions.FK_Users_ID=users.ID) LEFT JOIN trips ON (positions.FK_Trips_ID=trips.ID) WHERE positions.FK_Users_ID=? ORDER BY positions.DateOccurred DESC LIMIT 1"); + $query = $mysqli->prepare("SELECT positions.ID,positions.Latitude,positions.Longitude,positions.Altitude,positions.Speed,positions.Angle,positions.DateOccurred,positions.Comments,users.username,trips.Name,trips.ID FROM positions LEFT JOIN users ON (positions.FK_Users_ID=users.ID) LEFT JOIN trips ON (positions.FK_Trips_ID=trips.ID) WHERE positions.FK_Users_ID=? ORDER BY positions.DateOccurred DESC LIMIT 1"); $query->bind_param('i', $userid); } $query->execute(); - $query->bind_result($positionid,$latitude,$longitude,$altitude,$speed,$angle,$dateoccured,$username,$trackname,$trackid); + $query->bind_result($positionid,$latitude,$longitude,$altitude,$speed,$angle,$dateoccured,$comments,$username,$trackname,$trackid); header("Content-type: text/xml"); $xml = new XMLWriter(); @@ -63,6 +63,7 @@ if ($userid) { $xml->writeElement("speed", $speed); $xml->writeElement("angle", $angle); $xml->writeElement("dateoccured", $dateoccured); + $xml->writeElement("comments", $comments); $xml->writeElement("username", $username); $xml->writeElement("trackid", $trackid); $xml->writeElement("trackname", $trackname); diff --git a/index.php b/index.php index b9df43c..f2f4e4c 100755 --- a/index.php +++ b/index.php @@ -36,7 +36,7 @@ else { '.$lang_user.'