[drape] Removed location timestamp comparing with system time.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako 2022-09-13 10:58:57 +03:00
parent 563b78519b
commit 49539ce236
3 changed files with 5 additions and 22 deletions

View file

@ -13,7 +13,6 @@
#include "drape/overlay_handle.hpp"
#include "drape/render_bucket.hpp"
#include "indexer/map_style_reader.hpp"
namespace df
{
@ -60,7 +59,6 @@ MyPosition::MyPosition(ref_ptr<dp::GraphicsContext> context, ref_ptr<dp::Texture
, m_accuracy(0.0f)
, m_showAzimuth(false)
, m_isRoutingMode(false)
, m_obsoletePosition(false)
{
m_parts.resize(4);
CacheAccuracySector(context, mng);
@ -100,7 +98,6 @@ void MyPosition::SetRoutingMode(bool routingMode)
void MyPosition::SetPositionObsolete(bool obsolete)
{
m_obsoletePosition = obsolete;
CHECK(m_arrow3d != nullptr, ());
m_arrow3d->SetPositionObsolete(obsolete);
}

View file

@ -3,7 +3,6 @@
#include "drape_frontend/arrow3d.hpp"
#include "drape_frontend/frame_values.hpp"
#include "drape_frontend/render_node.hpp"
#include "drape_frontend/render_state_extension.hpp"
#include "shaders/program_manager.hpp"
@ -63,7 +62,6 @@ private:
float m_accuracy;
bool m_showAzimuth;
bool m_isRoutingMode;
bool m_obsoletePosition;
using TPart = std::pair<dp::IndicesRange, size_t>;

View file

@ -7,21 +7,17 @@
#include "drape_frontend/user_event_stream.hpp"
#include "drape_frontend/visual_params.hpp"
#include "indexer/scales.hpp"
#include "geometry/mercator.hpp"
#include "base/math.hpp"
#include "platform/measurement_utils.hpp"
#include "base/math.hpp"
#include <algorithm>
#include <array>
#include <chrono>
#include <string>
#include <vector>
#include <utility>
namespace df
{
@ -433,18 +429,10 @@ void MyPositionController::OnLocationUpdate(location::GpsInfo const & info, bool
m_isDirtyViewport = true;
}
using namespace std::chrono;
auto const delta =
duration_cast<seconds>(system_clock::now().time_since_epoch()).count() - info.m_timestamp;
if (delta >= kMaxUpdateLocationInvervalSec)
{
m_positionIsObsolete = true;
m_autoScale2d = m_autoScale3d = kUnknownAutoZoom;
}
else
{
m_positionIsObsolete = false;
}
// Assume that every new position is fresh enough. We can't make some straightforward filtering here
// like comparing system_clock::now().time_since_epoch() and info.m_timestamp, because can't rely
// on valid time settings on endpoint device.
m_positionIsObsolete = false;
if (!m_isPositionAssigned)
{