nidus-sync/platform/latlng.go
Eli Ribble 9dccd21cee
RMO frontend checkpoint
* Create a nwe AddressAndMapLocator which abstracts out the behavior of
   selecting a location
 * Fix the overlay causing render errors on the MapLocator by getting
   rid of the overlay and just using a lock indicator
 * Fix MapLocator zooming in to the wrong place by not framing the
   markers
 * Remove Latlng from platform and just use Location with optional
   accuracy
 * Use nested types with form-encoded POST
 * Fix styles on water report page
2026-04-09 17:21:35 +00:00

13 lines
247 B
Go

package platform
import (
"github.com/Gleipnir-Technology/nidus-sync/db/enums"
)
type LatLng struct {
Latitude *float64
Longitude *float64
MapZoom float32
AccuracyValue float64
AccuracyType enums.PublicreportAccuracytype
}