summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLeith Bade <leith@mapbox.com>2015-02-16 15:25:31 -0800
committerLeith Bade <leith@mapbox.com>2015-02-19 14:28:49 -0800
commit5c79baedf933e7a3d90cbad541deee294f5ed6ed (patch)
tree2a5f0c0f3cc8d099d562aea13e8c23242b29aca5 /include
parent4daa02987b77c32265ad0aa8819419d4e21e66c0 (diff)
downloadqtlocation-mapboxgl-5c79baedf933e7a3d90cbad541deee294f5ed6ed.tar.gz
Add projection functions to Java
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/android/jni.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/mbgl/android/jni.hpp b/include/mbgl/android/jni.hpp
index aa2f1ab2fc..721104897d 100644
--- a/include/mbgl/android/jni.hpp
+++ b/include/mbgl/android/jni.hpp
@@ -39,6 +39,16 @@ extern jclass arrayListClass;
extern jmethodID arrayListConstructorId;
extern jmethodID arrayListAddId;
+extern jclass projectedMetersClass;
+extern jmethodID projectedMetersConstructorId;
+extern jfieldID projectedMetersNorthingId;
+extern jfieldID projectedMetersEastingId;
+
+extern jclass pointFClass;
+extern jmethodID pointFConstructorId;
+extern jfieldID pointFXId;
+extern jfieldID pointFYId;
+
}
}