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

{
    "id": 150,
    "name": "Alcântara Launch Center, Federative Republic of Brazil",
    "country_code": "BRA",
    "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_150_20200803142405.jpg",
    "total_launch_count": 2,
    "total_landing_count": 0,
    "pads": [
        {
            "id": 146,
            "url": "https://ll.thespacedevs.com/2.0.0/pad/146/?format=api",
            "agency_id": null,
            "name": "VLS Pad",
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/Alc%C3%A2ntara_Launch_Center",
            "map_url": "https://www.google.com/maps?q=-2.3177,-44.369984",
            "latitude": -2.3177,
            "longitude": -44.369984,
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_146_20200803143337.jpg",
            "total_launch_count": 2
        }
    ]
}