Remove Style import from fragment/NearbyMapFragment

This commit is contained in:
neslihanturan 2019-07-15 13:28:57 +03:00
parent 2c98db85f9
commit 6d9c74fcd0

View file

@ -34,7 +34,6 @@ import com.mapbox.mapboxsdk.annotations.MarkerOptions;
import com.mapbox.mapboxsdk.annotations.PolygonOptions; import com.mapbox.mapboxsdk.annotations.PolygonOptions;
import com.mapbox.mapboxsdk.camera.CameraPosition; import com.mapbox.mapboxsdk.camera.CameraPosition;
import com.mapbox.mapboxsdk.camera.CameraUpdateFactory; import com.mapbox.mapboxsdk.camera.CameraUpdateFactory;
import com.mapbox.mapboxsdk.constants.Style;
import com.mapbox.mapboxsdk.geometry.LatLng; import com.mapbox.mapboxsdk.geometry.LatLng;
import com.mapbox.mapboxsdk.maps.MapView; import com.mapbox.mapboxsdk.maps.MapView;
import com.mapbox.mapboxsdk.maps.MapboxMap; import com.mapbox.mapboxsdk.maps.MapboxMap;
@ -529,7 +528,7 @@ public class NearbyMapFragment extends DaggerFragment {
* @param savedInstanceState bundle coming from Nearby Fragment * @param savedInstanceState bundle coming from Nearby Fragment
*/ */
private void setupMapView(Bundle savedInstanceState) { private void setupMapView(Bundle savedInstanceState) {
Timber.d("setupMapView called"); /*Timber.d("setupMapView called");
boolean isDarkTheme = applicationKvStore.getBoolean("theme", false); boolean isDarkTheme = applicationKvStore.getBoolean("theme", false);
MapboxMapOptions options = new MapboxMapOptions() MapboxMapOptions options = new MapboxMapOptions()
.compassGravity(Gravity.BOTTOM | Gravity.LEFT) .compassGravity(Gravity.BOTTOM | Gravity.LEFT)
@ -559,7 +558,7 @@ public class NearbyMapFragment extends DaggerFragment {
addMapMovementListeners(); addMapMovementListeners();
updateMapSignificantlyForCurrentLocation(); updateMapSignificantlyForCurrentLocation();
}); });
} }*/
} }
/** /**