photoprism/internal/maps/osm/title.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

38 lines
668 B
Go

package osm
import (
"strings"
"github.com/photoprism/photoprism/internal/util"
)
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 util.Title(strings.TrimSpace(result))
}