计算不规则多边形的面积、中心、重心
/** * 获取不规则多边形重心点 * * @param mPoints * @return */ public static LatLng getCenterOfGravityPoint(List<LatLng> mPoints) { double area = 0.0;//多边形面积 double Gx = 0.0, Gy = 0.0;// 重心的x、y for (int i = 1; i <= mPoints.size(); i++) { double iLat = mPoints.get(i % mPoints.size()).latitude; double iLng = mPoints.get(i % mPoints.size()).longitude; double nextLat = mPoints.get(i - 1).latitude; double nextLng = mPoints.get(i - 1).longitude; double temp = (iLat * nextLng - iLng * nextLat) / 2.0; area += temp; Gx += temp * (iLat + nextLat) / 3.0; Gy += temp * (iLng + nextLng) / 3.0; } Gx = Gx / area; Gy = Gy / area; return new LatLng(Gx, Gy); }
https://www.jianshu.com/p/144240a8334f