我正在尝试找出一种方法来从Google的routeboxer到php获取经度和纬度范围,然后通过这些限制查询mysql。然后,我将结果输出到json或xml,以将其与android maps api v2结合使用。我找到了这个http://luktek.com/Blog/2011-02-03-google-maps-routeboxer-in-php,但是我认为这只在 map 上两点之间做方框,而不是路线本身周围的方框,这使其不够准确。不能使用javascript,因为我不能将其与google maps api一起使用或从数据库中获取结果。是否有任何方法可以通过使用一些服务器端代码(最好是PHP,但也可以使用与mysql配合使用的任何其他语言)来完成此任务,该方法可以获取界限,按界限查询mysql并将数据输出到json或xml以便可以被android解析?
最佳答案
我终于找到了令我满意的解决方案。
我不会粘贴每个步骤,因为这将需要上千行,但总而言之,这就是它:
1.从Google路线api json(https://developers.google.com/maps/documentation/directions/#JSON):“overview_polyline”:{
2.使用以下方法将折线解码为纬度和经度点:
http://unitstep.net/blog/2008/08/02/decoding-google-maps-encoded-polylines-using-php/
3.下载此https://github.com/bazo/route-boxer。我将GeoTools php文件中的所有代码堆积到一个文件中,但是如果您知道如何使用它,那不是特别必要的:)
4.以下是使用这些脚本获取这些框的示例:
...
$from = "(Startup point for example: "Turku,Finland")";
$to = "(Destination point fro example: "Porvoo,Finland")";
$json_string = file_get_contents("http://maps.googleapis.com/maps/api/directions/json?origin=$from&destination=$to&sensor=false");
$parsed_json = json_decode($json_string, true);
$polyline = $parsed_json['routes'][0]['overview_polyline']['points'];
$routepoints = decodePolylineToArray($polyline);
$collection = new LatLngCollection($routepoints);
$boxer = new RouteBoxer();
//calculate boxes with 10km distance from the line between points
$boxes = $boxer->box($collection, $distance = 10);
foreach($boxes as $row){
$southWestLtd = $row->southWest->latitude;
$southWestLng = $row->southWest->longitude;
$northEastLtd = $row->northEast->latitude;
$northEastLng = $row->northEast->longitude;
$query = "SELECT * FROM markers WHERE Latitude > $southWestLtd AND Latitude < $northEastLtd AND Longitude > $southEastLng AND Longitude < $norhtEastLng";
}
运行该查询,它只会为您提供这些框中的标记(或您要查询的内容)。如果您需要一些更详细的说明,请发表评论。我很乐意为您提供帮助,因为我花了很多时间试图找到一个合理的解决方案。
关于php - Routeboxer服务器端,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20773535/