summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/style/layers/Layer.java
blob: eb316658ce82d0e6f1d2936c222f743b49b8a525 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.mapbox.mapboxsdk.style.layers;

import android.support.annotation.NonNull;
import android.util.Log;

/**
 * Base class for the different Layer types
 */
public abstract class Layer {

    private long nativePtr;

    public Layer(long nativePtr) {
        Log.i(Layer.class.getSimpleName(), "Native pointer constructor: " + nativePtr);
        this.nativePtr = nativePtr;
    }

    public Layer() {
        Log.i(Layer.class.getSimpleName(), "Default constructor");
    }

    public void set(@NonNull Property<?>... properties) {
        if (properties.length == 0) {
            return;
        }

        boolean updateClasses = false;
        for (Property<?> property : properties) {
            if (property instanceof PaintProperty) {
                updateClasses = true;
                nativeSetPaintProperty(property.name, property.value);
            } else {
                nativeSetLayoutProperty(property.name, property.value);
            }
        }

        nativeUpdateStyle(updateClasses);
    }

    public String getId() {
        return nativeGetId();
    }

    @Override
    protected native void finalize() throws Throwable;

    protected native String nativeGetId();

    protected native void nativeSetLayoutProperty(String name, Object value);

    protected native void nativeSetPaintProperty(String name, Object value);

    protected native void nativeSetFilter(Object[] filter);

    protected native void nativeSetSourceLayer(String sourceLayer);

    protected native void nativeUpdateStyle(boolean updateClasses);

    @Override
    public String toString() {
        return "Layer: " + getId();
    }

    public long getNativePtr() {
        return nativePtr;
    }

}