API endpoint that allows Location instances to be viewed.

GET:
Return a list of all the existing location instances.

FILTERS:
Parameters - 'name', 'country_code', 'id'
Example - /2.0.0/location/?country_code=USA

GET /2.0.0/location/32/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 32,
    "name": "Hokkaido Spaceport, Japan",
    "country_code": "JPN",
    "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_32_20200803142407.jpg",
    "total_launch_count": 7,
    "total_landing_count": 0,
    "pads": [
        {
            "id": 106,
            "url": "https://ll.thespacedevs.com/2.0.0/pad/106/?format=api",
            "agency_id": 1002,
            "name": "Launch Complex 0",
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/Taiki_Aerospace_Research_Field",
            "map_url": "https://www.google.com/maps?q=42.50000000,143.441389",
            "latitude": 42.5,
            "longitude": 143.441389,
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_106_20200803143453.jpg",
            "total_launch_count": 7
        },
        {
            "id": 211,
            "url": "https://ll.thespacedevs.com/2.0.0/pad/211/?format=api",
            "agency_id": 1002,
            "name": "Launch Complex 1",
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/Taiki_Aerospace_Research_Field",
            "map_url": "https://www.google.com/maps?q=42.50000000,143.441389",
            "latitude": 42.5,
            "longitude": 143.441389,
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_launch_complex_1_20230816074610.jpg",
            "total_launch_count": 0
        }
    ]
}