Don't treat various source tags as descriptive tags

This commit is contained in:
Quincy Morgan
2019-11-18 15:43:46 -05:00
parent 010c6949b9
commit b2611a941c
+2
View File
@@ -2,7 +2,9 @@ export function osmIsInterestingTag(key) {
return key !== 'attribution' &&
key !== 'created_by' &&
key !== 'source' &&
key !== 'source_ref' &&
key !== 'odbl' &&
key.indexOf('source:') !== 0 &&
key.indexOf('tiger:') !== 0;
}