photoprism/internal/maps/osm/title.go
Michael Mayer 52b57e9fba Backend: Add maps package
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2019-12-20 11:30:58 +01:00

37 lines
642 B
Go

package osm
import (
"strings"
"github.com/photoprism/photoprism/internal/util"
)
var labelTitles = map[string]string{
"airport": "Airport",
"highway": "Route %name%",
}
func (o *Location) Title() (result string) {
result = o.Label()
if title, ok := labelTitles[result]; ok {
title = strings.Replace(title, "%name%", o.Name, 1)
return title
}
if o.Name != "" {
result = o.Name
}
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))
}