我使用下一代码在我的谷歌地图上绘制路线:
private void drawRoute(List<Route> route) {
for (int i = route.size() - 1; i >= 0 ; i--) {
final Route currentRoute = route.get(i);
final PolylineOptions polyOptions = new PolylineOptions();
polyOptions.color(Color.parseColor(allColors[inc_color]));
polyOptions.width(10);
polyOptions.addAll(currentRoute.getPoints());
mMap.addPolyline(polyOptions);
}
}
在此步骤之后,我想从我的SQLite数据库中获取距离我的路线最远5公里的所有PoI并在地图上绘制它们。
如何过滤我的数据库,以显示位于路线最长5公里处的所有位置?
也许获得路线的界限?