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:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2015-04-20 10:53:52 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:47:17 +0300
commit861adb654c22419f2c96dad9e70f9f6f46aff725 (patch)
tree55690b6dc86684b256422844843a96855b8b831b /platform/location.hpp
parentd69d62274a6e3eafbc009118673a56d24433c121 (diff)
Passing lane information through JNI. Taking into account route direction while calculation lane hints.
Diffstat (limited to 'platform/location.hpp')
-rw-r--r--platform/location.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/platform/location.hpp b/platform/location.hpp
index 564ce2d82d..6a65949fdf 100644
--- a/platform/location.hpp
+++ b/platform/location.hpp
@@ -4,8 +4,8 @@
#include "routing/turns.hpp"
-#include "std/string.hpp"
#include "std/cmath.hpp"
+#include "std/string.hpp"
#include "std/vector.hpp"
@@ -108,8 +108,9 @@ namespace location
uint32_t m_exitNum;
//@}
int m_time;
- // lane information on the edge before the turn.
- vector<vector<routing::turns::Lane>> m_lanes;
+ // m_lanes contains lane information on the edge before the turn.
+ // Template parameter int is used for passing the information to Android and iOS.
+ vector<vector<int>> m_lanes;
// The next street name
string m_trgName;