summaryrefslogtreecommitdiff
path: root/platform/android/src/style/sources/vector_source.hpp
blob: f7e7645c5bb960c492cf04345866772259e3e351 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#pragma once

#include "source.hpp"
#include <mbgl/style/sources/vector_source.hpp>
#include "../../geometry/feature.hpp"
#include <jni/jni.hpp>

namespace mbgl {
namespace android {

class VectorSource : public Source {
public:

    static constexpr auto Name() { return "com/mapbox/mapboxsdk/style/sources/VectorSource"; };

    static jni::Class<VectorSource> javaClass;

    static void registerNative(jni::JNIEnv&);

    VectorSource(jni::JNIEnv&, jni::String, jni::Object<>);

    VectorSource(mbgl::Map&, mbgl::style::VectorSource&);

    ~VectorSource();

    jni::Array<jni::Object<Feature>> querySourceFeatures(jni::JNIEnv&, jni::Array<jni::String>,
                                                               jni::Array<jni::Object<>> jfilter);

    jni::jobject* createJavaPeer(jni::JNIEnv&);

}; // class VectorSource

} // namespace android
} // namespace mbgl