ovalcountiesangularmap
Version:
A map of the uk, with hover on counties, selectable and incorporated with angular
72 lines (70 loc) • 3.72 kB
JavaScript
ovalCounties
.factory( 'countiesList', function(){
var _counties = {
"nw": {
"label": "North West",
"regions": [ "Greater Manchester", "Lancashire", "Merseyside", "Cheshire", "Cumbria" ]
},
"ne": {
"label": "North East",
"regions": [ "County Durham", "Northumberland", "Tyne and Wear", "Tees Valley" ]
},
"yl": {
"label": "Yorkshire & Lincolnshire",
"regions": [ "Yorkshire and the Humber", "West Yorkshire", "South Yorkshire", "East Riding of Yorkshire", "North Yorkshire", "North Lincolnshire", "North East Lincolnshire" ]
},
"wm": {
"label": "West Midlands",
"regions": [ "Staffordshire", "Worcestershire", "Warwickshire", "Shropshire", "Herefordshire" ]
},
"wm": {
"label": "West Midlands",
"regions": [ "Staffordshire", "Worcestershire", "Warwickshire", "Shropshire", "Herefordshire" ]
},
"em": {
"label": "East Midlands",
"regions": [ "Derbyshire", "Nottinghamshire", "Lincolnshire", "Leicestershire", "Rutland", "Northamptonshire" ]
},
"sw": {
"label": "South West",
"regions": [ "Somerset", "Bristol", "Gloucestershire", "Wiltshire", "Dorset", "Devon", "Cornwall" ]
},
"e": {
"label": "East",
"regions": [ "Essex", "Hertfordshire", "Bedfordshire", "Cambridgeshire", "Norfolk", "Suffolk" ]
},
"e": {
"label": "East",
"regions": [ "Essex", "Hertfordshire", "Bedfordshire", "Cambridgeshire", "Norfolk", "Suffolk" ]
},
"s": {
"label": "South",
"regions": [ "Berkshire", "Hampshire", "Wiltshire", "Oxford" ]
},
"s": {
"label": "South East",
"regions": [ "Berkshire", "Hampshire", "Wiltshire", "Oxford" ]
},
"se": {
"label": "South",
"regions": [ "Greater London", "Kent", "East Sussex", "West Sussex", "Surrey", "Hampshire", "Buckinghamshire" ]
},
"scot": {
"label": "Scotland",
"regions": [ "Angus & Dundee", "Argyll", "Ayrshire", "Dumfries & Galloway", "Edinburgh & the Lothians", "Fife", "Glasgow & Clyde Valley", "The Scottish Highlands", "Orkney", "The Outer & Inner Hebrides", "Perthshire", "The Scottish Borders", "The Shetland Islands", "Stirling & The Trossachs" ]
},
"ni": {
"label": "Northern Ireland",
"regions": [ "County Antrim", "County Armagh", "County Down", "County Fermanagh", "County Londonderry", "County Tyrone" ]
},
"w": {
"label": "West",
"regions": [ "Anglesey", "Conwy Valley", "Denbighshire", "Flint", "Wrexham", "Gwynedd", "Powys", "Cardiganshire", "Pembrokshire", "Carmathenshire", "Glamorgan", "Monmouthshire" ]
},
};
return {
all: function(){
return _counties;
}
}
});