Еще один блок вызывается при рисовании карты mapbox, ссылка на mapbox api https://docs.mapbox.com/
else{
TableRow tr = new TableRow(getApplicationContext());
TextView tdRow = new TextView(getApplicationContext())
Созданная карта предназначена для добавления в уже созданную таблицу
Mapbox.getInstance(getApplicationContext(), getString(R.string.MapSDK));
MapboxMapOptions options = MapboxMapOptions.createFromAttributes(this, null)
.camera(new CameraPosition.Builder()
.target(new LatLng(lat, lng))
.zoom(12)
.build());
// create map
MapView mapView = new MapView(this, options);
tr.addView(mapView);
table.addView(tr);
}