Merge branch 'develop' of https://github.com/SemvdH/Next-Location into develop

This commit is contained in:
Sem van der Hoeven
2021-01-06 20:59:57 +01:00
16 changed files with 99 additions and 50 deletions

View File

@@ -23,6 +23,7 @@ public class Location implements Parcelable {
@Nullable
private String imageUrl;
private String iconUrl;
public Location(@NotNull String name, String coordinates, String description, @Nullable String imageUrl) {
this.name = name;
@@ -88,6 +89,10 @@ public class Location implements Parcelable {
return imageUrl;
}
public String getIconUrl(){
return iconUrl;
}
public void setImageUrl(@Nullable String imageUrl) {
this.imageUrl = imageUrl;
}