summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJustin R. Miller <incanus@codesorcery.net>2015-08-28 15:29:04 -0700
committerJustin R. Miller <incanus@codesorcery.net>2015-08-28 15:29:04 -0700
commitbcfce808ca178c01eb417a6575035903d57265c1 (patch)
tree8ba876f838738df1e609ba7bfb62182d7a5c5241 /include
parentf3cd47ededd6c2994749df12d543de744773b671 (diff)
downloadqtlocation-mapboxgl-bcfce808ca178c01eb417a6575035903d57265c1.tar.gz
implement annotation marker tap recognition in Android
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/android/jni.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/mbgl/android/jni.hpp b/include/mbgl/android/jni.hpp
index 62cb399d3f..07c44fc7ad 100644
--- a/include/mbgl/android/jni.hpp
+++ b/include/mbgl/android/jni.hpp
@@ -43,6 +43,13 @@ extern jfieldID latLngZoomLatitudeId;
extern jfieldID latLngZoomLongitudeId;
extern jfieldID latLngZoomZoomId;
+extern jclass bboxClass;
+extern jmethodID bboxConstructorId;
+extern jfieldID bboxLatNorthId;
+extern jfieldID bboxLatSouthId;
+extern jfieldID bboxLonEastId;
+extern jfieldID bboxLonWestId;
+
extern jclass markerClass;
extern jmethodID markerConstructorId;
extern jfieldID markerPositionId;