This may not be the smartest question but I'm kind of a beginner and I'm having trouble figuring out what the "this" in the following methods refers to. Could anyone help me with it?
public class MapViewExt extends MapView {
public MapViewExt(Context context) {
super(context);
}
public void addMarker(MapMarker marker) {
MarkerApiKt.addMarker(this, marker, marker.getX(), marker.getY(), -0.5f, -0.5f, 0f, 0f);
}
public void removeMarker(MapMarker mapMarker){
MarkerApiKt.removeMarker(this, mapMarker);
}
public void setMarkerTapListener(MarkerTapListener markerTapListener){
MarkerApiKt.setMarkerTapListener(this,markerTapListener);
}
}