diff options
author | Manabu-GT <manabu1984+github@gmail.com> | 2015-10-05 02:57:26 +0900 |
---|---|---|
committer | Manabu Shimobe <manabu1984+github@gmail.com> | 2015-10-22 19:58:52 +0900 |
commit | 84c8d1fd6ec55bf4cd43cba0ca8fc26d77061196 (patch) | |
tree | b5cc788216cb89847dbd68e2d4730f2344373ff1 /include | |
parent | 927b4c6dbe6c81aa4df0f662044ec3c9e55a8458 (diff) | |
download | qtlocation-mapboxgl-84c8d1fd6ec55bf4cd43cba0ca8fc26d77061196.tar.gz |
add setSetVisibleCoordinateBounds api as already in iOS
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/android/jni.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/mbgl/android/jni.hpp b/include/mbgl/android/jni.hpp index 89bda3c7ed..06b9d781c7 100644 --- a/include/mbgl/android/jni.hpp +++ b/include/mbgl/android/jni.hpp @@ -88,6 +88,13 @@ extern jmethodID pointFConstructorId; extern jfieldID pointFXId; extern jfieldID pointFYId; +extern jclass rectFClass; +extern jmethodID rectFConstructorId; +extern jfieldID rectFLeftId; +extern jfieldID rectFTopId; +extern jfieldID rectFRightId; +extern jfieldID rectFBottomId; + extern jclass httpContextClass; extern jmethodID httpContextGetInstanceId; extern jmethodID httpContextCreateRequestId; |