|
@@ -35,7 +35,7 @@ public class ShapeUtils {
|
|
|
*/
|
|
|
public static byte[] getTileByte(String bboxStr, List<POI> dataList, ShapeStyle shapeStyle) {
|
|
|
BufferedImage image = new BufferedImage(WIDTH, HEIGHT, BufferedImage.TYPE_INT_ARGB);
|
|
|
- renderAndDetectClick(image, bboxStr, dataList, shapeStyle);
|
|
|
+ renderShape(image, bboxStr, dataList, shapeStyle);
|
|
|
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
|
|
|
try {
|
|
|
ImageIO.write(image, "png", buffer);
|
|
@@ -182,23 +182,11 @@ public class ShapeUtils {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Converts a hexadecimal color string to RGBA format.
|
|
|
- *
|
|
|
- * @param hexColor The hexadecimal color string (e.g., "#2860F1").
|
|
|
- * @param alpha The alpha value (0-255) for opacity.
|
|
|
- * @return An array containing the RGBA values.
|
|
|
- */
|
|
|
public static int[] hexToRgba(String hexColor, int alpha) {
|
|
|
- // Remove the hash (#) sign if it exists
|
|
|
hexColor = hexColor.replace("#", "");
|
|
|
-
|
|
|
- // Parse the string
|
|
|
int red = Integer.valueOf(hexColor.substring(0, 2), 16);
|
|
|
int green = Integer.valueOf(hexColor.substring(2, 4), 16);
|
|
|
int blue = Integer.valueOf(hexColor.substring(4, 6), 16);
|
|
|
-
|
|
|
- // Return the RGBA values
|
|
|
return new int[]{red, green, blue, alpha};
|
|
|
}
|
|
|
|
|
@@ -250,15 +238,7 @@ public class ShapeUtils {
|
|
|
dataList.parallelStream().forEach(poi -> {
|
|
|
BufferedImage image = new BufferedImage(WIDTH, HEIGHT, BufferedImage.TYPE_INT_ARGB);
|
|
|
Graphics2D graphics = image.createGraphics();
|
|
|
- Geometry shape = GeoUtils.getGeoUtils().createGeometry(poi.getShape());
|
|
|
-// //判断数据点线面
|
|
|
- if (StringUtils.equals(shape.getGeometryType(), "Polygon")) {
|
|
|
- drawPolygonShape(bbox, graphics, shape, poi, shapeStyle);
|
|
|
- } else if (StringUtils.equalsAny(shape.getGeometryType(), "LinearRing", "LineString", "MultiLineString")) {
|
|
|
- drawLineShape(bbox, graphics, shape, shapeStyle);
|
|
|
- } else if (StringUtils.equals(shape.getGeometryType(), "Point")) {
|
|
|
- drawPointShape(bbox, graphics, shape, poi, shapeStyle);
|
|
|
- }
|
|
|
+ drawShape(shapeStyle, poi, bbox, graphics);
|
|
|
//如果选中
|
|
|
int rgb = image.getRGB(x, y);
|
|
|
int alpha = (rgb >> 24) & 0xff; // 提取alpha值
|
|
@@ -270,16 +250,19 @@ public class ShapeUtils {
|
|
|
return clickSelectedDataList;
|
|
|
}
|
|
|
|
|
|
- public static void renderAndDetectClick(BufferedImage image, String bboxStr, List<POI> dataList, ShapeStyle shapeStyle) {
|
|
|
+ public static void renderShape(BufferedImage image, String bboxStr, List<POI> dataList, ShapeStyle shapeStyle) {
|
|
|
String[] split = bboxStr.split(",");
|
|
|
double[] bbox = new double[split.length];
|
|
|
for (int i = 0; i < split.length; i++) {
|
|
|
bbox[i] = Double.parseDouble(split[i]);
|
|
|
}
|
|
|
Graphics2D graphics = image.createGraphics();
|
|
|
- dataList.parallelStream().forEach(poi -> {
|
|
|
- Geometry shape = GeoUtils.getGeoUtils().createGeometry(poi.getShape());
|
|
|
-// //判断数据点线面
|
|
|
+ dataList.parallelStream().forEach(poi -> drawShape(shapeStyle, poi, bbox, graphics));
|
|
|
+ }
|
|
|
+
|
|
|
+ private static void drawShape(ShapeStyle shapeStyle, POI poi, double[] bbox, Graphics2D graphics) {
|
|
|
+ Geometry shape = GeoUtils.getGeoUtils().createGeometry(poi.getShape());
|
|
|
+ if(shape!=null) {
|
|
|
if (StringUtils.equals(shape.getGeometryType(), "Polygon")) {
|
|
|
drawPolygonShape(bbox, graphics, shape, poi, shapeStyle);
|
|
|
} else if (StringUtils.equalsAny(shape.getGeometryType(), "LinearRing", "LineString", "MultiLineString")) {
|
|
@@ -287,7 +270,7 @@ public class ShapeUtils {
|
|
|
} else if (StringUtils.equals(shape.getGeometryType(), "Point")) {
|
|
|
drawPointShape(bbox, graphics, shape, poi, shapeStyle);
|
|
|
}
|
|
|
- });
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
}
|