#pragma once #include #include #include #include "geometry.hpp" #include "../java/util.hpp" #include namespace mbgl { namespace android { namespace geojson { class MultiPoint : public Geometry { public: static constexpr auto Name() { return "com/mapbox/geojson/MultiPoint"; }; static constexpr auto Type() { return "MultiPoint"; }; static jni::Object New(jni::JNIEnv&, const mbgl::MultiPoint&); static mapbox::geojson::multi_point convert(jni::JNIEnv&, jni::Object); static jni::Object coordinates(jni::JNIEnv&, jni::Object); static void registerNative(jni::JNIEnv&); }; } // namespace geojson } // namespace android } // namespace mbgl