| | |
| | | //最南纬点经纬度 |
| | | MapLatLng mapLatLngMin = PlaneCourseUtils.minLatPoint(param.getPolygon()); |
| | | |
| | | List<MapLatLng> topLeftPointList = PlaneCourseUtils.createPoint(boundingRectangle.topLeft, intValue, param.getBearing(), mapLatLngMin); |
| | | List<MapLatLng> topRightPointList = PlaneCourseUtils.createPoint(boundingRectangle.topRight, intValue, param.getBearing(), mapLatLngMin); |
| | | List<MapLatLng> topLeftPointList = PlaneCourseUtils.createPoint(boundingRectangle.topLeft, intValue, param.getBearing() * 2, mapLatLngMin); |
| | | List<MapLatLng> topRightPointList = PlaneCourseUtils.createPoint(boundingRectangle.topRight, intValue, param.getBearing() * 2, mapLatLngMin); |
| | | |
| | | List<LineString> lineStrings = PlaneCourseUtils.createLine(topLeftPointList, topRightPointList); |
| | | |