summaryrefslogtreecommitdiff
path: root/platform/android/src/style/sources/vector_source.hpp
blob: 643b468338664f416b8b237cb6a5df28e9b0e6df (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
35
36
#pragma once

#include "source.hpp"
#include <mbgl/style/sources/vector_source.hpp>
#include "../../geojson/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<geojson::Feature>> querySourceFeatures(jni::JNIEnv&, jni::Array<jni::String>,
                                                                  jni::Array<jni::Object<>> jfilter);

    jni::String getURL(jni::JNIEnv&);

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

}; // class VectorSource

} // namespace android
} // namespace mbgl