photoprism/internal/maps/osm/category.go
Michael Mayer 6da8bd098a Backend: Add support for new Places API #173
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2019-12-31 07:16:11 +01:00

22 lines
485 B
Go

package osm
import "fmt"
func (l Location) Category() (result string) {
key := fmt.Sprintf("%s=%s", l.LocCategory, l.LocType)
catKey := fmt.Sprintf("%s=*", l.LocCategory)
typeKey := fmt.Sprintf("*=%s", l.LocType)
if result, ok := osmCategories[key]; ok {
return result
} else if result, ok := osmCategories[catKey]; ok {
return result
} else if result, ok := osmCategories[typeKey]; ok {
return result
}
// log.Debugf("osm: no label found for %s", key)
return ""
}