dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #25230
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 12456: PNG maps, opacity
------------------------------------------------------------
revno: 12456
committer: Lars Helge Øverland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2013-10-07 10:56:46 +0200
message:
PNG maps, opacity
modified:
dhis-2/dhis-services/dhis-service-mapgeneration/src/main/java/org/hisp/dhis/mapgeneration/GeoToolsMapGenerationService.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-services/dhis-service-mapgeneration/src/main/java/org/hisp/dhis/mapgeneration/GeoToolsMapGenerationService.java'
--- dhis-2/dhis-services/dhis-service-mapgeneration/src/main/java/org/hisp/dhis/mapgeneration/GeoToolsMapGenerationService.java 2013-10-06 22:17:22 +0000
+++ dhis-2/dhis-services/dhis-service-mapgeneration/src/main/java/org/hisp/dhis/mapgeneration/GeoToolsMapGenerationService.java 2013-10-07 08:56:46 +0000
@@ -197,13 +197,10 @@
uidOuMap.put( ou.getUid(), ou );
}
- // Get the name from the external layer
String name = mapView.getName();
- // Get the period
Period period = !mapView.getPeriods().isEmpty() ? mapView.getPeriods().get( 0 ) : null;
- // Get the low and high radii
Integer radiusLow = !isIndicator ? mapView.getRadiusLow() : DEFAULT_RADIUS_LOW;
Integer radiusHigh = !isIndicator ? mapView.getRadiusHigh() : DEFAULT_RADIUS_HIGH;
@@ -213,8 +210,7 @@
Color colorHigh = MapUtils.createColorFromString( StringUtils.trimToNull( mapView.getColorHigh() ) != null ? mapView.getColorHigh()
: DEFAULT_COLOR_HIGH );
- // TODO MapView should be extended to feature opacity
- float opacity = DEFAULT_OPACITY;
+ Float opacity = mapView.getOpacity() != null ? mapView.getOpacity().floatValue() : DEFAULT_OPACITY;
// TODO MapView should be extended to feature stroke color
Color strokeColor = MapUtils.createColorFromString( DEFAULT_STROKE_COLOR );