Add update mapBoxMap method definition to NearbyMapFragment

This commit is contained in:
neslihanturan 2018-02-19 23:42:24 +03:00
parent 244ad5d10f
commit 93eba0e0d5
2 changed files with 5 additions and 1 deletions

View file

@ -335,7 +335,7 @@ public class NearbyActivity extends NavigationBaseActivity implements LocationUp
.subscribe(this::populatePlaces);
} else if (locationChangeType
.equals(LocationServiceManager.LocationChangeType.LOCATION_SLIGHTLY_CHANGED)) {
//TODO: update current location marker and camera
updateMapFragment();
}
}

View file

@ -146,6 +146,10 @@ public class NearbyMapFragment extends android.support.v4.app.Fragment {
});
}
public void updateMapWithLocationChanges() {
}
private void initViews() {
bottomSheetList = getActivity().findViewById(R.id.bottom_sheet);
bottomSheetListBehavior = BottomSheetBehavior.from(bottomSheetList);