2010-02-10 14:08:33 +01:00
< ? php
// Pandora FMS - http://pandorafms.com
// ==================================================
2010-05-24 18:17:21 +02:00
// Copyright (c) 2005-2010 Artica Soluciones Tecnologicas
2010-02-10 14:08:33 +01:00
// Please see http://pandorafms.org for full contribution list
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation for version 2.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// Load global vars
if ( ! isset ( $id_agente )) {
die ( " Not Authorized " );
}
require_once ( 'include/functions_gis.php' );
require_once ( 'include/functions_html.php' );
2011-04-13 18:11:02 +02:00
ui_require_javascript_file ( 'openlayers.pandora' );
2010-02-10 14:08:33 +01:00
2010-03-05 12:16:20 +01:00
echo " <div style='margin-bottom: 10px;'></div> " ;
2010-02-10 14:08:33 +01:00
2010-02-18 14:29:36 +01:00
$agentData = getDataLastPositionAgent ( $id_agente );
$updateGisData = get_db_value ( 'update_gis_data' , 'tagente' , 'id_agente' , $id_agente );
$agent_name = get_agent_name ( $id_agente );
2010-02-10 14:08:33 +01:00
/* Map with the current position */
2010-05-25 23:29:14 +02:00
echo " <div id= \" " . $agent_name . " _agent_map \" style= \" border:1px solid black; width:98%; height: 30em; \" ></div> " ;
2010-03-01 12:17:27 +01:00
if ( ! getAgentMap ( $id_agente , " 500px " , " 98% " , false )) {
echo " <br /><div class='nf'> " . __ ( " There is no default map. " ) . " </div> " ;
}
2010-02-10 14:08:33 +01:00
2010-02-18 14:29:36 +01:00
if ( $agentData === false ) {
2010-02-18 17:54:24 +01:00
echo " <p> " . __ ( " There is no GIS data for this agent, so it's positioned in default position of map. " ) . " </p> " ;
2010-02-18 14:29:36 +01:00
}
2010-06-07 17:22:29 +02:00
echo " <div class='warn'> " . __ ( " Warning: When you change the Agent position, the agent automatically activates the 'Ignore new GIS data' option " ) . " </div> " ;
2010-02-18 14:29:36 +01:00
2010-02-10 14:08:33 +01:00
$table -> width = '60%' ;
$table -> data = array ();
2010-05-25 23:29:14 +02:00
$table -> head [ 0 ] = __ ( 'Agent position' );
$table -> head_colspan [ 0 ] = 2 ;
2010-02-10 14:08:33 +01:00
$table -> data [ 1 ][ 0 ] = __ ( 'Longitude: ' );
2010-02-18 14:29:36 +01:00
$table -> data [ 1 ][ 1 ] = print_input_text_extended ( 'longitude' , $agentData [ 'stored_longitude' ], 'text-longitude' , '' , 10 , 10 , false , '' ,
array ( 'onchange' => " setIgnoreGISDataEnabled() " , 'onkeyup' => " setIgnoreGISDataEnabled() " ), true );
2010-02-10 14:08:33 +01:00
$table -> data [ 2 ][ 0 ] = __ ( 'Latitude: ' );
2010-02-18 14:29:36 +01:00
$table -> data [ 2 ][ 1 ] = print_input_text_extended ( 'latitude' , $agentData [ 'stored_latitude' ], 'text-latitude' , '' , 10 , 10 , false , '' ,
array ( 'onchange' => " setIgnoreGISDataEnabled() " , 'onkeyup' => " setIgnoreGISDataEnabled() " ), true );
2010-02-10 14:08:33 +01:00
$table -> data [ 3 ][ 0 ] = __ ( 'Altitude: ' );
2010-02-18 14:29:36 +01:00
$table -> data [ 3 ][ 1 ] = print_input_text_extended ( 'altitude' , $agentData [ 'stored_altitude' ], 'text-altitude' , '' , 10 , 10 , false , '' ,
array ( 'onchange' => " setIgnoreGISDataEnabled() " , 'onkeyup' => " setIgnoreGISDataEnabled() " ), true );
2010-02-10 14:08:33 +01:00
$table -> data [ 4 ][ 0 ] = __ ( 'Ignore new GIS data:' );
2010-02-18 14:29:36 +01:00
$table -> data [ 4 ][ 1 ] = __ ( 'Disabled' ) . ' ' . print_radio_button_extended ( " update_gis_data " , 1 , '' , $updateGisData , false , '' , 'style="margin-right: 40px;"' , true );
$table -> data [ 4 ][ 1 ] .= __ ( 'Active' ) . ' ' . print_radio_button_extended ( " update_gis_data " , 0 , '' , $updateGisData , false , '' , 'style="margin-right: 40px;"' , true );
2010-02-10 14:08:33 +01:00
$url = 'index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&tab=gis&id_agente=' . $id_agente ;
2010-02-18 14:29:36 +01:00
echo " <form method='post' action=' " . $url . " ' onsubmit ='return validateFormFields();'> " ;
2010-02-10 14:08:33 +01:00
print_input_hidden ( 'update_gis' , 1 );
print_table ( $table );
echo '<div class="action-buttons" style="clear: left; width: ' . $table -> width . '; float: left;">' ;
2010-05-25 23:29:14 +02:00
print_submit_button ( __ ( 'Update' ), '' , false , 'class="sub upd"' );
2010-02-10 14:08:33 +01:00
echo '</div>' ;
echo " </form> " ;
?>
< script type = " text/javascript " >
2010-02-18 14:29:36 +01:00
function setIgnoreGISDataEnabled () {
$ ( " #radiobtn0001 " ) . removeAttr ( " checked " );
$ ( " #radiobtn0002 " ) . attr ( " checked " , " checked " );
}
function validateFormFields () {
longitude = $ ( 'input[name=longitude]' ) . val ();
latitude = $ ( 'input[name=latitude]' ) . val ();
altitude = $ ( 'input[name=altitude]' ) . val ();
valid = true ;
$ ( 'input[name=longitude]' ) . css ( 'background' , '#ffffff' );
$ ( 'input[name=latitude]' ) . css ( 'background' , '#ffffff' );
$ ( 'input[name=altitude]' ) . css ( 'background' , '#ffffff' );
//Validate longitude
if (( jQuery . trim ( longitude ) . length == 0 ) ||
isNaN ( parseFloat ( longitude ))) {
$ ( 'input[name=longitude]' ) . css ( 'background' , '#cc0000' );
valid = false ;
}
//Validate latitude
if (( jQuery . trim ( latitude ) . length == 0 ) ||
isNaN ( parseFloat ( latitude ))) {
$ ( 'input[name=latitude]' ) . css ( 'background' , '#cc0000' );
valid = false ;
}
//Validate altitude
if (( jQuery . trim ( altitude ) . length == 0 ) ||
isNaN ( parseFloat ( altitude ))) {
$ ( 'input[name=altitude]' ) . css ( 'background' , '#cc0000' );
valid = false ;
}
if ( valid ) return true ;
else return false ;
}
2010-02-10 14:08:33 +01:00
$ ( document ) . ready (
function () {
function changePositionAgent ( e ) {
var lonlat = map . getLonLatFromViewPortPx ( e . xy );
2010-02-18 14:29:36 +01:00
var layer = map . getLayersByName ( " layer_for_agent_<?php echo $agent_name ?> " );
2010-02-10 14:08:33 +01:00
layer = layer [ 0 ];
feature = layer . features [ 0 ];
lonlat . transform ( map . getProjectionObject (), map . displayProjection ); //transform the lonlat in object proyection to "standar proyection"
$ ( 'input[name=latitude]' ) . val ( lonlat . lat );
$ ( 'input[name=longitude]' ) . val ( lonlat . lon );
2010-02-18 14:29:36 +01:00
if ( $ ( 'input[name=altitude]' ) . val () . length == 0 )
$ ( 'input[name=altitude]' ) . val ( 0 )
setIgnoreGISDataEnabled ();
2010-02-10 14:08:33 +01:00
//return to no-standar the proyection for to move
feature . move ( lonlat . transform ( map . displayProjection , map . getProjectionObject ()));
}
js_activateEvents ( changePositionAgent );
});
2010-03-08 20:21:28 +01:00
</ script >