Open
Description
Create a GET
API serving /api/markers
providing a response containing all currently available markers.
Expected response
{
"markers": [
{
"position": [
49.038230248475905,
31.450182690663947
],
"title": "Twit Title with image",
"content": "",
"user": "Twitter User",
"uri": "https://twitter/postUrl",
"image": "imageURL",
"timestamp": "unixtimestamp of tweet"
},
{
"position": [
48.038230248475905,
31.450182690663947
],
"title": "Twit Title without image",
"content": "Twit Text",
"user": "Twitter User",
"uri": "https://twitter/postUrl",
"timestamp": "unixtimestamp of tweet"
}
],
"timestamp": "unixTimeStamp"
}