summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/main/java/com/mapbox/mapboxsdk/testapp/model/annotations/TextMarkerView.java
blob: c0a589cb578160b5623001227d6c92c37d7027cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.mapbox.mapboxsdk.testapp.model.annotations;

import com.mapbox.mapboxsdk.annotations.BaseMarkerViewOptions;
import com.mapbox.mapboxsdk.annotations.MarkerView;

public class TextMarkerView extends MarkerView {

    private String text;

    public TextMarkerView(BaseMarkerViewOptions baseMarkerViewOptions, String text) {
        super(baseMarkerViewOptions);
        this.text = text;
    }

    public String getText() {
        return text;
    }
}