summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/main/java/com/mapbox/mapboxsdk/testapp/model/annotations/TextMarkerView.java
blob: dcee5c24098ce325abbfd5e36be8683507b4ea10 (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;
  }
}