https://knowledge.here.com/csm_kb?id=public_kb_csm_details&number=KB0017817
I've referenced this doc for getting the speed limit but it's not working well in a specific location. I'm not sure if I'm doing right.
For latitude: 34.9531064, longitude: -82.4189515, I was able to get 33712897 for ReferenceId using this api. https://reverse.geocoder.ls.hereapi.com/6.2/reversegeocode.json?prox=34.97147,-104.89752&mode=retrieveAddresses&maxresults=1&apiKey={{YOUR_API_KEY}}&locationattributes=linkInfo
tile size = 180° / 2^level [degree] tileY = trunc((latitude + 90°) / tile size) tileX = trunc((longitude + 180°) / tile size)
And using this formula, I am able to get 277 for tileX and 355 for tileY in case the level is 9.
But after calling https://pde.api.here.com/1/tiles.json?layers=SPEED_LIMITS_FC1&levels=9&tilexy=213,355&app_id={{YOUR_APP_ID}}&app_code={{YOUR_APP_CODE}}&meta=1&callback=onLoadPDETiles
, I cannot get 33712897 ReferenceId in the response. So the result is I cannot get speed limit of that specific location.
What did I do wrong?