我的代码正在搜索附近的餐馆并通过在地图上显示所有最近的餐馆来运作良好, 但我想要非常靠近餐厅,我想在TextView中只显示一家餐厅,我不知道如何计算最短的路径。请帮忙,谢谢:)
@types/cropperjs
}
答案 0 :(得分:1)
用于查找最接近项目的伪代码:
closest = none;
for each item in items
{
if(!closest || item.distance > closest.distance)
{
closest = item
}
}
print "Closest Item is: " closest
答案 1 :(得分:0)