Skip to content

Commit

Permalink
limit cycleway quests to a few countries, most in Europe (#749)
Browse files Browse the repository at this point in the history
  • Loading branch information
westnordost committed Jan 3, 2018
1 parent 66ec46c commit 24a7c6b
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,5 +198,14 @@ private static String getOverpassQuery(BoundingBox bbox)
@Override public int getTitle() { return R.string.quest_cycleway_title; }

@Override public int getDefaultDisabledMessage() { return 0; }
@Override public Countries getEnabledForCountries() { return Countries.ALL; }
@Override public Countries getEnabledForCountries()
{
return Countries.noneExcept(new String[]
{
// most of Western Europe (from North to South):
"NO","SE","FI","IS","GB","DK","IE","DE","PL","NL","BE","FR","LU","AT","CH","IT","ES",
// East Asia
"JP","KR","TW"
});
}
}

0 comments on commit 24a7c6b

Please sign in to comment.