#pragma once #include #include #include #include namespace mbgl { namespace android { class LatLng : private mbgl::util::noncopyable { public: static constexpr auto Name() { return "com/mapbox/mapboxsdk/geometry/LatLng"; }; static jni::Local> New(jni::JNIEnv&, const mbgl::LatLng&); static mbgl::Point getGeometry(jni::JNIEnv&, const jni::Object&); static mbgl::LatLng getLatLng(jni::JNIEnv&, const jni::Object&); static void registerNative(jni::JNIEnv&); }; } // namespace android } // namespace mbgl