diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 12c89760c4..0a0995a016 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,14 @@ +2010-03-03 Miguel de Dios + + * include/functions_gis.php: add new parameter to function "addPath" the + $lastPosition for paint the line to last position that this position is not + in the table tgis_data_history. In function "getAgentMap" use the new + parameter in the function "addPath". + + * operation/gis_maps/render_view.php: tiny fix in the include javascript + of google. And few stetic changes in the top menu. And add the new parameter + to "addPath". + 2010-03-03 Miguel de Dios * operation/gis_maps/render_view.php: close in the end a unclose php tag. diff --git a/pandora_console/include/functions_gis.php b/pandora_console/include/functions_gis.php index b0ec23a064..4356b4da70 100644 --- a/pandora_console/include/functions_gis.php +++ b/pandora_console/include/functions_gis.php @@ -543,11 +543,12 @@ function get_agent_icon_map($idAgent, $state = false, $status = null) { * * @param string $layerName String of layer. * @param integer $idAgent The id of agent - * @param $history_time: Number of seconds in the past to show from where to start the history path. + * @param integer $history_time Number of seconds in the past to show from where to start the history path. + * @param array $lastPosition The last position of agent that is not in history table. * * @return None */ -function addPath($layerName, $idAgent, $history_time = null) { +function addPath($layerName, $idAgent, $lastPosition = null, $history_time = null) { if ($history_time === null) { $where = '1 = 1'; @@ -587,6 +588,10 @@ function addPath($layerName, $idAgent, $history_time = null) { $first =false; echo "new OpenLayers.Geometry.Point(" . $point['longitude'] . ", " . $point['latitude'] . ")"; } + + if ($lastPosition !== null) { + echo ", new OpenLayers.Geometry.Point(" . $lastPosition['longitude'] . ", " . $lastPosition['latitude'] . ")"; + } echo "];"; } ?> @@ -598,7 +603,7 @@ function addPath($layerName, $idAgent, $history_time = null) { $agentPositionLongitude, 'latitude' => $agentPositionLatitude); + addPath("layer_for_agent_".$agent_name,$agent_id, $lastPosition, $history_time); } addAgentPoint("layer_for_agent_".$agent_name, $agent_name, $agentPositionLatitude, $agentPositionLongitude, $agent_icon, 20, 20, $agent_id, $status, 'point_agent_info'); diff --git a/pandora_console/operation/gis_maps/render_view.php b/pandora_console/operation/gis_maps/render_view.php index 7184bafcad..da2cd09cec 100644 --- a/pandora_console/operation/gis_maps/render_view.php +++ b/pandora_console/operation/gis_maps/render_view.php @@ -66,7 +66,7 @@ if ($confMap !== false) { } if ($gmap_layer === true) { ?> - + ' . __('All') . ''; -$buttons[] = ' ' . __('Critical') . ''; -$buttons[] = ' ' . __('Warning') . ''; -$buttons[] = ' ' . __('Ok') . ''; -$buttons[] = ' ' . __('Other') . ''; +$buttons[] = '' . + __('All') . ''; +$buttons[] = '
' . + '
'; +$buttons[] = '
' . + '
'; +$buttons[] = '
' . + '
'; +$buttons[] = '
' . + '
'; $buttons[] = __('Show agents in state: '); @@ -139,7 +144,8 @@ if ($layers != false) { } else { if ($show_history == 'y') { - addPath($layer['layer_name'], $idAgent); + $lastPosition = array('longitude' => $coords['stored_longitude'], 'latitude' => $coords['stored_latitude']); + addPath($layer['layer_name'], $idAgent, $lastPosition); } } $icon = get_agent_icon_map($idAgent, true);