add extraTags to geometry tables

master
Oliver Tonnhofer 2015-11-21 18:14:26 +01:00
parent 7f1a5cb999
commit 3e5c836957
1 changed files with 1 additions and 1 deletions

View File

@ -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() {