photoprism/internal/maps/osm/title.go
Michael Mayer f8a45b14d9 Backend: Move reusable packages to pkg/
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-01-12 14:00:56 +01:00

38 lines
661 B
Go

package osm
import (
"strings"
"github.com/photoprism/photoprism/pkg/txt"
)
var labelTitles = map[string]string{
"airport": "Airport",
"visitor center": "Visitor Center",
}
func (l Location) Name() (result string) {
result = l.Category()
if title, ok := labelTitles[result]; ok {
title = strings.Replace(title, "%name%", l.LocName, 1)
return title
}
if l.LocName != "" {
result = l.LocName
}
result = strings.Replace(result, "_", " ", -1)
if i := strings.Index(result, " - "); i > 1 {
result = result[:i]
}
if i := strings.Index(result, ","); i > 1 {
result = result[:i]
}
return txt.Title(strings.TrimSpace(result))
}