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.hereapi.cn/maptile/2.1/maptile/newest/normal.day/19/431697/198661/256/png8
?app_id={YOUR_APP_ID}
&app_code={YOUR_APP_CODE}
&metadata=metaonly
&mgen=2
Response
metadata
would be as follows. 
{
"metadata": {
"street labels": [],
"labels": [],
"city center labels": [],
"buildings": [...],
"transit stops": [{
"name": "八王坟客运站配载点",
"bounding boxes": [{
"box 1": [233, 168, 14, 14]
}, {
"box 2": [158, 157, 74, 25]
}],
"info": [{
"position": {
"latitude": 39.906743,
"longitude": 116.423450
},
"official name": "八王坟客运站配载点",
"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.hereapi.cn/maptile/2.1/maptile/newest/normal.day/16/16815/24358/256/png8
?app_id={YOUR_APP_ID}
&app_code={YOUR_APP_CODE}
&metadata=metaonly
&mgen=2