PHP Sorting nearest coordinates

后端 未结 3 2042
渐次进展
渐次进展 2020-12-24 09:32

I have a MySQL table in a PHP webservice containing longitude and latitude. I want to send the user only the, let\'s say, 5 closest coordinates. I wrote the method which cal

3条回答
  •  难免孤独
    2020-12-24 10:08

    It is more efficient to embed the sort in the query.

    This wonderful tutorial will help you (and provides a query that serves your needs): https://developers.google.com/maps/articles/phpsqlsearch_v3#findnearsql

提交回复
热议问题