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

{
    "id": 146,
    "name": "Svobodny Cosmodrome, Russian Federation",
    "country_code": "RUS",
    "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_146_20200803142450.jpg",
    "total_launch_count": 5,
    "total_landing_count": 0,
    "pads": [
        {
            "id": 128,
            "url": "https://ll.thespacedevs.com/2.0.0/pad/128/?format=api",
            "agency_id": 163,
            "name": "5",
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/Svobodny_Cosmodrome",
            "map_url": "https://www.google.com/maps?q=51.7,127.997806",
            "latitude": 51.7,
            "longitude": 127.997806,
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_128_20200803143250.jpg",
            "total_launch_count": 5
        }
    ]
}