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

{
    "count": 52,
    "next": null,
    "previous": "https://ll.thespacedevs.com/2.0.0/location/?format=api&limit=10&offset=40",
    "results": [
        {
            "id": 153,
            "url": "https://ll.thespacedevs.com/2.0.0/location/153/?format=api",
            "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
        },
        {
            "id": 160,
            "url": "https://ll.thespacedevs.com/2.0.0/location/160/?format=api",
            "name": "Arnhem Space Centre",
            "country_code": "AUS",
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_arnhem_space_centre_20220622160552.jpg",
            "total_launch_count": 3,
            "total_landing_count": 0
        }
    ]
}