Skip to content

Commit

Permalink
Filter function works
Browse files Browse the repository at this point in the history
  • Loading branch information
neslihanturan committed Oct 16, 2019
1 parent 8a13cf7 commit 78368a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ public void addNearbyMarkersToMapBoxMap(@Nullable List<NearbyBaseMarker> baseMar
//NearbyController.markerLabelList.put(baseMarkerList.get(i).getPlace().getLabel().toString(), markers.get(i));
NearbyBaseMarker nearbyBaseMarker = baseMarkerList.get(i);
NearbyController.markerLabelList.add(
new MarkerPlaceGroup(markers.get(i), false, nearbyBaseMarker.getPlace()));
new MarkerPlaceGroup(markers.get(i), bookmarkLocationDao.findBookmarkLocation(baseMarkerList.get(i).getPlace()), nearbyBaseMarker.getPlace()));
//TODO: fix bookmark location
NearbyController.markerExistsMap.put((baseMarkerList.get(i).getPlace().hasWikidataLink()), markers.get(i));
NearbyController.markerNeedPicMap.put(((baseMarkerList.get(i).getPlace().pic == null) ? true : false), markers.get(i));
Expand Down

0 comments on commit 78368a2

Please sign in to comment.