|
|
|
@ -28,6 +28,16 @@ import java.util.stream.Collectors;
|
|
|
|
|
@Slf4j |
|
|
|
|
public class GeomUtils { |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* |
|
|
|
|
* @param polygonPoints 坐标点位 |
|
|
|
|
* @param lineColor 线条颜色 |
|
|
|
|
* @param lineOpaqueness 线条不透明度 |
|
|
|
|
* @param lineWidth 线条宽度 |
|
|
|
|
* @param fillColor 填充颜色 |
|
|
|
|
* @param fillOpaqueness 填充不透明度 |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
public static PolygonGeom computeGemo(List<PolygonPoint> polygonPoints,String lineColor,Integer lineOpaqueness,Integer lineWidth, |
|
|
|
|
String fillColor,Integer fillOpaqueness){ |
|
|
|
|
PolygonGeom polygonGeom = new PolygonGeom(); |
|
|
|
@ -36,11 +46,16 @@ public class GeomUtils {
|
|
|
|
|
String strokeColor; |
|
|
|
|
String fillColor1; |
|
|
|
|
if ("wechat_applet".equals(s)){ |
|
|
|
|
strokeColor = computeColorWechat(lineColor, lineOpaqueness); |
|
|
|
|
fillColor1 = computeColorWechat(fillColor, fillOpaqueness); |
|
|
|
|
//
|
|
|
|
|
// strokeColor = computeColorWechat(lineColor, lineOpaqueness);
|
|
|
|
|
// fillColor1 = computeColorWechat(fillColor, fillOpaqueness);
|
|
|
|
|
strokeColor =lineColor; |
|
|
|
|
fillColor1 = fillColor; |
|
|
|
|
}else { |
|
|
|
|
strokeColor = computeColor(lineColor, lineOpaqueness); |
|
|
|
|
fillColor1 = computeColor(fillColor, fillOpaqueness); |
|
|
|
|
// strokeColor = computeColor(lineColor, lineOpaqueness);
|
|
|
|
|
// fillColor1 = computeColor(fillColor, fillOpaqueness);
|
|
|
|
|
strokeColor = lineColor; |
|
|
|
|
fillColor1 = fillColor; |
|
|
|
|
} |
|
|
|
|
polygonGeom.setStrokeColor(strokeColor); |
|
|
|
|
polygonGeom.setFillColor(fillColor1); |
|
|
|
@ -222,6 +237,13 @@ public class GeomUtils {
|
|
|
|
|
return colorBuffer.toString(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// public static String computeColorWechat(String color,Integer opaqueness){
|
|
|
|
|
// if (StrUtil.isEmpty(color) || opaqueness == null){
|
|
|
|
|
// return null;
|
|
|
|
|
// }
|
|
|
|
|
// String hex = Integer.toHexString(opaqueness);
|
|
|
|
|
// return color+hex;
|
|
|
|
|
// }
|
|
|
|
|
public static String computeColorWechat(String color,Integer opaqueness){ |
|
|
|
|
if (StrUtil.isEmpty(color) || opaqueness == null){ |
|
|
|
|
return null; |
|
|
|
|