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

{
    "id": 18,
    "name": "Vostochny Cosmodrome, Siberia, Russian Federation",
    "country_code": "RUS",
    "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_18_20200803142401.jpg",
    "total_launch_count": 17,
    "total_landing_count": 0,
    "pads": [
        {
            "id": 108,
            "url": "https://ll.thespacedevs.com/2.0.0/pad/108/?format=api",
            "agency_id": 63,
            "name": "Cosmodrome Site 1A",
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/Vostochny_Cosmodrome",
            "map_url": "https://www.google.com/maps?q=51.884395,128.333932",
            "latitude": 51.884395,
            "longitude": 128.333932,
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_108_20200803143525.jpg",
            "total_launch_count": 1
        },
        {
            "id": 83,
            "url": "https://ll.thespacedevs.com/2.0.0/pad/83/?format=api",
            "agency_id": 63,
            "name": "Cosmodrome Site 1S",
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/Vostochny_Cosmodrome",
            "map_url": "https://www.google.com/maps?q=51.884395,128.333932",
            "latitude": 51.884395,
            "longitude": 128.333932,
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_83_20200803143544.jpg",
            "total_launch_count": 16
        }
    ]
}