如何按照距离过滤网站上的位置

时间:2015-12-24 09:44:31

标签: php

我在测试网站上列出了带有gps坐标的餐馆。我想过滤并只显示我所在位置附近的物品。有谁可以帮助我?

1 个答案:

答案 0 :(得分:2)

只要你知道你的GPS坐标

function distance(myloc, restloc) {
    x_dist = myloc.x - restloc.x;
    y_dist = myloc.y - restloc.y;
    return sqrt(x_dist*x_dist + y_dist*y_dist);

然后您可以按距离进行过滤。