我在日本有地理点,我想路由匹配将此 GeoJSON 输入https://tcs.ext.here.com/examples/v3/rme_basic
{
"type": "FeatureCollection",
"features":[
{
"type":"Feature",
"geometry":{
"type":"Point",
"coordinates":[
142.7533,
43.84698333
]
}
},
{
"type":"Feature",
"geometry":{
"type":"Point",
"coordinates":[
142.7518167,
43.84776667
]
}
},
{
"type":"Feature",
"geometry":{
"type":"Point",
"coordinates":[
142.7497167,
43.84836667
]
}
}
]
}
但它返回一些警告
回复:
[
{
"category":1004,
"text":"Ignoring Trace Point 0, since it is more than 300.0m away from any road link",
"routeLinkSeqNum":-1,
"tracePointSeqNum":0
},
{
"category":1004,
"text":"Ignoring Trace Point 1, since it is more than 300.0m away from any road link",
"routeLinkSeqNum":-1,
"tracePointSeqNum":1
},
{
"category":1004,
"text":"Ignoring Trace Point 2, since it is more than 300.0m away from any road link",
"routeLinkSeqNum":-1,
"tracePointSeqNum":2
},
{
"category":1006,
"text":"Tracepoints have been matched out of order",
"routeLinkSeqNum":-1,
"tracePointSeqNum":0
},
{
"category":1008,
"text":"Tracepoint #0 (43.84698333 / 142.7533) could not be matched",
"routeLinkSeqNum":-1,
"tracePointSeqNum":0
},
{
"category":1008,
"text":"Tracepoint #1 (43.84776667 / 142.7518167) could not be matched, because trace points before couldn't be matched",
"routeLinkSeqNum":-1,
"tracePointSeqNum":1
},
{
"category":1008,
"text":"Tracepoint #2 (43.84836667 / 142.7497167) could not be matched, because trace points before couldn't be matched",
"routeLinkSeqNum":-1,
"tracePointSeqNum":2
}
]
根据文档,需要“附加权利”,但我不知道需要什么。GPS 位置,例如在欧洲,正在工作。
路由匹配 v8 在日本是否可行?