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