Returns the coordinates of all baskets.
GET
/api/map/markers/{markerType}Authorizations
Parameters
Path Parameters
markerType*
Typestring
RequiredResponses
Successful
Samples
cURL
curl -X GET http://localhost/api/map/markers/{markerType}
JavaScript
fetch("http://localhost/api/map/markers/{markerType}")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/map/markers/{markerType}");
Python
import requests
response = requests.get("http://localhost/api/map/markers/{markerType}")
print(response.json())