set up override zoom if both lat and lng within delta

This commit is contained in:
Bel LaPointe
2022-01-14 11:00:55 -05:00
parent 937f91bbf6
commit e660f2ef9f
5 changed files with 51 additions and 18 deletions

View File

@@ -28,12 +28,18 @@ type Config struct {
UploadMethod string
}
Maps struct {
DirectionsURIFormat string
PathedURIFormat string
URIFormat string
Pathed bool
Pickup bool
Dropoff bool
URIFormat string
Pickup bool
Dropoff bool
Pathed struct {
Enabled bool
DirectionsURIFormat string
PathedURIFormat string
Zoom struct {
AcceptableLatLngDelta float32
Override int
}
}
}
Clients map[string]Client
Storage []string