We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d95f91c commit b950265Copy full SHA for b950265
app/src/main/java/spartons/com/frisbee/activities/main/ui/MainActivity.java
@@ -93,10 +93,7 @@ protected void onCreate(@Nullable Bundle savedInstanceState) {
93
viewModel.reverseGeocodeResult
94
.observe(this, placeName -> currentPlaceTextView.setText(placeName));
95
viewModel.currentLocation
96
- .observe(this, __ -> {
97
- Location location = new Location("");
98
- location.setLatitude(37.422);
99
- location.setLongitude(-122.084);
+ .observe(this, location -> {
100
if (firstTimeFlag) {
101
firstTimeFlag = false;
102
animateCamera(location);
0 commit comments