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/31/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 31,
    "name": "Spaceport America, NM, USA",
    "country_code": "USA",
    "description": "",
    "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_31_20200803142505.jpg",
    "timezone_name": "America/Denver",
    "total_launch_count": 4,
    "total_landing_count": 4,
    "pads": [
        {
            "id": 105,
            "url": "https://ll.thespacedevs.com/2.2.0/pad/105/?format=api",
            "agency_id": 1001,
            "name": "Vertical Launch Area",
            "description": null,
            "info_url": null,
            "wiki_url": null,
            "map_url": "https://www.google.com/maps?q=32.9901856,-106.9750602",
            "latitude": 32.9901856,
            "longitude": -106.9750602,
            "country_code": "USA",
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_105_20200803143432.jpg",
            "total_launch_count": 4
        }
    ]
}