Browse Source

修改地块颜色

feature/v.2.0.0
caoyizhong 3 years ago
parent
commit
d9ebc132d7
  1. 12
      air/src/main/java/com/air/utils/GeomUtils.java

12
air/src/main/java/com/air/utils/GeomUtils.java

@ -46,16 +46,16 @@ public class GeomUtils {
String strokeColor;
String fillColor1;
if ("wechat_applet".equals(s)){
log.info("处理前透明度=={}",lineOpaqueness);
// log.info("处理前透明度=={}",lineOpaqueness);
strokeColor = computeColorWechat(lineColor, lineOpaqueness);
fillColor1 = computeColorWechat(fillColor, fillOpaqueness);
// strokeColor =lineColor;
// fillColor1 = fillColor;
}else {
// strokeColor = computeColor(lineColor, lineOpaqueness);
// fillColor1 = computeColor(fillColor, fillOpaqueness);
strokeColor = computeColorWechats(lineColor, lineOpaqueness);
fillColor1 = computeColorWechats(fillColor, fillOpaqueness);
strokeColor = computeColor(lineColor, lineOpaqueness);
fillColor1 = computeColor(fillColor, fillOpaqueness);
// strokeColor = computeColorWechats(lineColor, lineOpaqueness);
// fillColor1 = computeColorWechats(fillColor, fillOpaqueness);
// strokeColor = lineColor;
// fillColor1 = fillColor;
}
@ -82,7 +82,7 @@ public class GeomUtils {
// log.info("中心lon经度==={}===中心lat纬度==={}",centerPoint.get("lon"),centerPoint.get("lat"));
Map<String, Double> centerPoint = getCenterPoint(lonLat);//有些中心不准
// Map<String, Double> centerPoint = getCenterOfGravityPoint4(lonLat);
log.info("中心lon经度==={}===中心lat纬度==={}",centerPoint.get("lon"),centerPoint.get("lat"));
// log.info("中心lon经度==={}===中心lat纬度==={}",centerPoint.get("lon"),centerPoint.get("lat"));
cenPoint.add(centerPoint.get("lon"));
cenPoint.add(centerPoint.get("lat"));
for (int i = 0;i<lonLatList.size();i++){ //处理坐标点

Loading…
Cancel
Save