Package com.aerisweather.aeris.tiles
Class AerisPointHelper
- java.lang.Object
-
- com.aerisweather.aeris.tiles.AerisPointHelper
-
public class AerisPointHelper extends Object
Helper class for loading aeris overlays. Sets up the basic defaults for the aeris request.
-
-
Constructor Summary
Constructors Constructor Description AerisPointHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static com.aerisweather.aeris.communication.AerisRequest
getRequest(double nLat, double wLong, double sLat, double eLong, AerisOverlay overlay, android.content.Context context)
Get the the request for this AerisPointData from the lat long bounds.static com.aerisweather.aeris.communication.AerisRequest
getRequest(AerisMapView mapView, AerisOverlay overlay)
Get the the request for this AerisPointData from the mapviews visible region.
-
-
-
Method Detail
-
getRequest
public static com.aerisweather.aeris.communication.AerisRequest getRequest(AerisMapView mapView, AerisOverlay overlay)
Get the the request for this AerisPointData from the mapviews visible region.- Parameters:
mapView
- AerisMapViewoverlay
- AerisOverlay- Returns:
- AerisRequest
-
getRequest
public static com.aerisweather.aeris.communication.AerisRequest getRequest(double nLat, double wLong, double sLat, double eLong, AerisOverlay overlay, android.content.Context context)
Get the the request for this AerisPointData from the lat long bounds.- Parameters:
nLat
- Northern latitude pointwLong
- western longitude pointsLat
- souther latitude point.eLong
- eastern longitude pointoverlay
- AerisOverlay objcontext
- app context- Returns:
- AerisRequest for this AerisPointData based on the bounds.
-
-