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