First indication that the location geocoder is working

This commit is contained in:
Eli Ribble 2026-01-08 22:21:59 +00:00
parent 2c85624583
commit 06767ff39a
No known key found for this signature in database
5 changed files with 133 additions and 5 deletions

View file

@ -17,7 +17,9 @@ type ContextNuisance struct{}
type ContextNuisanceSubmitComplete struct {
ReportID string
}
type ContextPool struct{}
type ContextPool struct{
MapboxToken string
}
type ContextQuick struct{}
type ContextQuickSubmitComplete struct {
ReportID string
@ -39,7 +41,7 @@ var (
Status = buildTemplate("status", "base")
)
var components = [...]string{"footer", "photo-upload", "photo-upload-header"}
var components = [...]string{"footer", "location-geocode", "location-geocode-header", "photo-upload", "photo-upload-header"}
func buildTemplate(files ...string) *htmlpage.BuiltTemplate {
subdir := "public-report"