From 3e5c83695758b96180c0485f805743fc48092ba0 Mon Sep 17 00:00:00 2001 From: Oliver Tonnhofer Date: Sat, 21 Nov 2015 18:14:26 +0100 Subject: [PATCH] add extraTags to geometry tables --- mapping/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mapping/config.go b/mapping/config.go index 8264dca..78de91d 100644 --- a/mapping/config.go +++ b/mapping/config.go @@ -242,7 +242,7 @@ func (m *Mapping) tables(tableType TableType) map[string]*TableFields { func (m *Mapping) extraTags(tableType TableType, tags map[Key]bool) { for _, t := range m.Tables { - if t.Type != tableType { + if t.Type != tableType && t.Type != "geometry" { continue } for key, _ := range t.ExtraTags() {