Public Transit Additional Information
The user wants to obtain additional information about a Public Transit Stop in order to display it in text mode.
Request
The code block below demonstrates a complete request for the public transit stop.
https://2.base.maps.ls.hereapi.com/maptile/2.1/maptile/newest/normal.day/16/35205/21495/256/png8
?apiKey={YOUR_API_KEY}
&metadata=metaonly
&mgen=2
Response
metadata
would be as follows. 
{
"metadata": {
"street labels":[ ... ],
"labels":[],
"city center labels":[],
"buildings":[ ... ],
"transit stops":
{
"name": "Stadtmitte",
"type": "TRANSIT_STOP",
"bounding boxes": [
{
"box 1":[ 136.50, 177.02, 14, 14 ]
},
{
"box 2": [ 113.22, 163.02, 60.56, 13 ]
}
],
"info": [
{
"position": {"latitude":52.510475, "longitude":13.389920},
"official name": "Stadtmitte",
"places id": "721680928",
"operating hours": {
"Monday": [["0:0:0","24:0:0"]],
...,
"Holiday": [["0:0:0","24:0:0"]],
},
"parking hours": {
"Monday": [["0:0:0","24:0:0"]],
...,
"Holiday": [["0:0:0","24:0:0"]]
}
}
]
}
],
"POIs": []
}
}
- places id: contains the places identifier of the transit stop
- operating hours: contains an array of days and times when the public transit stop operates
- parking size: contains the parking size (if applicable)
- parking hours: contains the allowed parking hours (if applicable)
The coverage of places with an ID as a property is growing. Mainly the locations in the US contain a places ID, as in the following request obtaining a tile with a public transit stop in Chicago.
https://2.base.maps.ls.hereapi.com/maptile/2.1/maptile/newest/normal.day/16/16815/24358/256/png8
?apiKey={YOUR_API_KEY}
&metadata=metaonly
&mgen=2