Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLev Dragunov <l.dragunov@corp.mail.ru>2015-08-17 15:53:32 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:01:42 +0300
commitcb8b201c393c0cd6453729e16c7b7f1176509053 (patch)
treec6ff07d16241bede8ff4125540c2cd0ec39fb94e /map/framework.hpp
parentdbe1feb585a88510a03cc140a5269b58fd9e7813 (diff)
[routing] Framework API route between two points support.
Diffstat (limited to 'map/framework.hpp')
-rw-r--r--map/framework.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/map/framework.hpp b/map/framework.hpp
index b47313b30f..6a8f17ca80 100644
--- a/map/framework.hpp
+++ b/map/framework.hpp
@@ -570,7 +570,7 @@ public:
bool IsRoutingActive() const { return m_routingSession.IsActive(); }
bool IsRouteBuilt() const { return m_routingSession.IsBuilt(); }
bool IsRouteBuilding() const { return m_routingSession.IsBuilding(); }
- void BuildRoute(m2::PointD const & destination, uint32_t timeoutSec);
+ void BuildRoute(m2::PointD const & start, m2::PointD const & finish, uint32_t timeoutSec);
void SetRouteBuildingListener(TRouteBuildingCallback const & buildingCallback) { m_routingCallback = buildingCallback; }
void SetRouteProgressListener(TRouteProgressCallback const & progressCallback) { m_progressCallback = progressCallback; }
void FollowRoute();