Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GeoCoordinates ¶
type GeoCoordinates struct { // The geographical ID of the city CityGeoId int `json:"cityGeoId"` // The geographical ID of the state StateGeoId int `json:"stateGeoId"` // The latitude coordinate of the city Latitude float64 `json:"latitude"` // The longitude coordinate of the city Longitude float64 `json:"longitude"` // The name of the city CityName string `json:"cityName"` // The name of the state, province, or territory of a country StateName string `json:"stateName"` // The name of the country CountryName string `json:"countryName"` // The ISO standard two-letter country code CountryCode string `json:"countryCode"` // The postal code PostalCode string `json:"postalCode"` // The ISO standard two-letter continent code ContinentCode string `json:"continentCode"` }
func GetByGeoCoordinates ¶ added in v2.61.0
func GetByGeoCoordinates(service *services.Service, latitude, longitude float64) (*GeoCoordinates, error)
Click to show internal directories.
Click to hide internal directories.