Near location search on Google Maps, PHP & MySQL

后端 未结 2 1395
一向
一向 2021-02-04 21:58

I\'m building a web app (just for fun xD), in wich you can tell it where you are and where you want to go, and then you can search for a list of buses you may take.

My d

2条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-04 22:07

    I think you'll have to do something like:

    1) search the routes table for all points within X distance of the users desired destination, and for each, store into an array:

    • bus_id
    • distance between that route row and user
    • route row id

    2) find the smallest distance for each bus_id, leaving a smaller array of a single point per bus_id (not sure exactly the best approach to this, but maybe some second query using distance, sorted ascending, limit 1)

    3) walk through this array, searching for all points in the route table that are within X distance of the user start point, AND that have the bus_id being tested. put these in a second array

    4) repeat step 2 on the end-point array

    5) there should just now be one point for each bus_id in each array, so you could plot your polylines for each bus_id appearing in both set (if you have a very user friendly transit system there might be more than one)

提交回复
热议问题