Package com.aerisweather.aeris.maps
Class AerisMapsEngine.CellInfo
- java.lang.Object
-
- com.aerisweather.aeris.maps.AerisMapsEngine.CellInfo
-
- Enclosing class:
- AerisMapsEngine
public class AerisMapsEngine.CellInfo extends Object
Wrapper class that holds the customization info for a storm cell
-
-
Field Summary
Fields Modifier and Type Field Description int
coneFillColor
int
coneLineColor
int
lineColor
boolean
showCone
boolean
showLine
-
Constructor Summary
Constructors Constructor Description CellInfo(boolean showCone, boolean showLine, int coneLineColor, int coneFillColor, int lineColor)
Initialize with set values.CellInfo(android.content.Context context, String name)
Initialize with context to pull the cell info from the xml values.
-
-
-
Constructor Detail
-
CellInfo
public CellInfo(boolean showCone, boolean showLine, int coneLineColor, int coneFillColor, int lineColor)
Initialize with set values.- Parameters:
showCone
- Whether the cone should be shown for the cell.showLine
- Whether the forecast line should be shown for the cell.coneLineColor
- Forecast cone line colorconeFillColor
- Forecast cone fill colorlineColor
- Forecast line color
-
CellInfo
public CellInfo(android.content.Context context, String name)
Initialize with context to pull the cell info from the xml values.- Parameters:
context
- contex to pull fromname
- name of the type("hail","tornadic","general","rotating")
-
-