nidus-sync/platform/latlng.go
Eli Ribble 7237f5f666
Some checks failed
/ golint (push) Failing after 3m50s
Move internal references to new source hosting
2026-05-19 15:33:57 +00:00

13 lines
252 B
Go

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