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

{
    "id": 143,
    "name": "SpaceX Starbase, TX, USA",
    "country_code": "USA",
    "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_143_20200803142438.jpg",
    "total_launch_count": 12,
    "total_landing_count": 9,
    "pads": [
        {
            "id": 111,
            "url": "https://ll.thespacedevs.com/2.0.0/pad/111/?format=api",
            "agency_id": 121,
            "name": "Suborbital Pad A",
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/SpaceX_South_Texas_Launch_Site",
            "map_url": "https://www.google.com/maps?q=25.997116,-97.15503099856647",
            "latitude": 25.997116,
            "longitude": -97.15503099856647,
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_111_20200803143229.jpg",
            "total_launch_count": 7
        },
        {
            "id": 188,
            "url": "https://ll.thespacedevs.com/2.0.0/pad/188/?format=api",
            "agency_id": 121,
            "name": "Orbital Launch Mount A",
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/SpaceX_South_Texas_Launch_Site",
            "map_url": "https://www.google.com/maps?q=25.997116,-97.15503099856647",
            "latitude": 25.997116,
            "longitude": -97.15503099856647,
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_orbital_launch_mount_a_20210514061342.jpg",
            "total_launch_count": 3
        },
        {
            "id": 187,
            "url": "https://ll.thespacedevs.com/2.0.0/pad/187/?format=api",
            "agency_id": 121,
            "name": "Suborbital Pad B",
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/SpaceX_South_Texas_Launch_Site",
            "map_url": "https://www.google.com/maps?q=25.997116,-97.15503099856647",
            "latitude": 25.997116,
            "longitude": -97.15503099856647,
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_launch_pad_b_20201211004226.jpg",
            "total_launch_count": 2
        }
    ]
}