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.2.0/location/?country_code=USA

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

{
    "id": 158,
    "name": "Spaceport Camden, GA, USA",
    "country_code": "USA",
    "description": "",
    "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_spaceport_camden_20211102161325.jpg",
    "timezone_name": "America/New_York",
    "total_launch_count": 0,
    "total_landing_count": 0,
    "pads": [
        {
            "id": 198,
            "url": "https://ll.thespacedevs.com/2.2.0/pad/198/?format=api",
            "agency_id": 1030,
            "name": "St. Marys Airport",
            "description": null,
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/St._Marys_Airport",
            "map_url": "https://www.google.com/maps?q=30.753333,-81.558333",
            "latitude": 30.753333,
            "longitude": -81.558333,
            "country_code": "USA",
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_st._marys_airport_20211102161516.jpg",
            "total_launch_count": 0
        }
    ]
}