package entity type MapLevel string const ( MapLevelCity MapLevel = "city" MapLevelProvince MapLevel = "province" MapLevelCountry MapLevel = "country" ) type MapSummaryItem struct { LocationID int64 Name string Count int CentroidLat float64 CentroidLng float64 }