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

{
    "id": 153,
    "name": "Tonghae Satellite Launching Ground",
    "country_code": "PRK",
    "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_153_20200803142503.jpg",
    "total_launch_count": 2,
    "total_landing_count": 0,
    "pads": [
        {
            "id": 184,
            "url": "https://ll.thespacedevs.com/2.0.0/pad/184/?format=api",
            "agency_id": null,
            "name": "Satellite Launch Pad",
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/Tonghae_Satellite_Launching_Ground",
            "map_url": "https://www.google.com/maps?q=40.855799,129.665895",
            "latitude": 40.855799,
            "longitude": 129.665895,
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_184_20200803143423.jpg",
            "total_launch_count": 2
        }
    ]
}