Skip to content

Commit

Permalink
add new property for dummyfeature
Browse files Browse the repository at this point in the history
  • Loading branch information
westnordost committed Jan 15, 2025
1 parent 2888ae5 commit d730309
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ data class DummyFeature(
override val id: String,
override val name: String,
override val icon: String?,
override val tags: Map<String, String>
override val tags: Map<String, String>,
) : Feature {
override val geometry = listOf(GeometryType.POINT, GeometryType.AREA)
override val imageURL = null
Expand All @@ -20,6 +20,7 @@ data class DummyFeature(
override val matchScore = 1.0f
override val addTags = tags
override val removeTags = emptyMap<String, String>()
override val preserveTags = emptyList<Regex>()
override val canonicalNames = emptyList<String>()
override val canonicalTerms = emptyList<String>()
override val isSuggestion = false
Expand Down

0 comments on commit d730309

Please sign in to comment.