Skip to content

Commit

Permalink
Tagging release 2.3.6 of the SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
u10int committed Aug 2, 2016
1 parent 63c41f1 commit 92c92a1
Show file tree
Hide file tree
Showing 15 changed files with 112 additions and 86 deletions.
10 changes: 7 additions & 3 deletions AerisWeather.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AerisWeather'
s.version = '2.3.5'
s.version = '2.3.6'
s.summary = 'Quickly integrate the Aeris Weather API data and map overlays into your iOS apps.'
s.description = <<-DESC
The Aeris iOS Weather Framework allows a developer to quickly and easily add weather content and functionality to their iOS applications quickly and easily without having to code anything themselves. It utilizes the Aeris API backend for data loading and is built on top of an object mapping system that efficiently loads requested weather content into third-party iOS applications, greatly reducing the amount of code and development needed on the developer end.
Expand All @@ -20,15 +20,19 @@ Pod::Spec.new do |s|
s.subspec 'Aeris' do |ss|
ss.header_dir = 'Aeris'
ss.vendored_frameworks = 'AerisWeatherSDK/Aeris.framework'
ss.resources = 'AerisWeatherSDK/Aeris.bundle'
ss.resource_bundle = {
'Aeris' => ['AerisWeatherSDK/Aeris.bundle/*']
}
ss.framework = 'Foundation'
ss.dependency 'AFNetworking', '~> 3.0'
end

s.subspec 'AerisUI' do |ss|
ss.header_dir = 'AerisUI'
ss.vendored_frameworks = 'AerisWeatherSDK/AerisUI.framework'
ss.resources = 'AerisWeatherSDK/AerisUI.bundle'
ss.resource_bundle = {
'AerisUI' => ['AerisWeatherSDK/AerisUI.bundle/*']
}
ss.framework = 'UIKit'
ss.dependency 'AerisWeather/Aeris'
end
Expand Down
Binary file modified AerisWeatherSDK/Aeris.framework/Versions/A/Aeris
Binary file not shown.
Binary file not shown.
Binary file modified AerisWeatherSDK/AerisMap.framework/Versions/A/AerisMap
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#import <MapKit/MapKit.h>
#import <AerisMap/AWFMapStrategy.h>

@class AWFAnimationContainerView, AWFAnnotation;
@class AWFMKAnimationContainerView, AWFAnnotation;

/**
* An `AWFAppleMapStrategy` object implements the `AWFMapStrategy` protocol and provides the necessary functionality for managing a `AWFWeatherMap` configured
Expand All @@ -26,7 +26,7 @@
@property (nonatomic, readonly) CLLocationCoordinate2D centerCoordinate;
@property (nonatomic, readonly) NSInteger zoomLevel;

@property (readonly, nonatomic, strong) AWFAnimationContainerView *animationContainerView;
@property (readonly, nonatomic, strong) AWFMKAnimationContainerView *animationContainerView;
@property (readonly, nonatomic, strong) AWFCalloutView *calloutView;

@property (nonatomic, unsafe_unretained) id<MKMapViewDelegate> mapViewDelegate;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#import <AerisMap/AWFImageDataLayer.h>

@class AWFImageOverlay;
@class AWFMKImageOverlay;

/**
* An `AWFMKImageDataLayer` object is a subclass of `AWFImageDataLayer` that provides the necessary `MKOverlay` instance to use with Apple's MapKit for displaying
Expand All @@ -19,6 +19,6 @@
/**
* The `MKOverlay` instance managing the image.
*/
@property (readonly, nonatomic, strong) AWFImageOverlay *overlay;
@property (readonly, nonatomic, strong) AWFMKImageOverlay *overlay;

@end
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//
// AWFImageOverlay.h
// AerisMap
//
// Created by Nicholas Shipes on 5/21/14.
// Copyright (c) 2014 HAMweather, LLC. All rights reserved.
//

#import <MapKit/MapKit.h>

@class AWFCoordinateBounds;

@interface AWFMKImageOverlay : NSObject <MKOverlay>

- (instancetype)initWithCoordinateBounds:(AWFCoordinateBounds *)bounds;

@end
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
//
// AWFMultiShapeOverlayRenderer.h
// AerisMap
//
// Created by Nicholas Shipes on 8/15/14.
// Copyright (c) 2014 HAMweather, LLC. All rights reserved.
//

#import <MapKit/MapKit.h>
#import <AerisMap/AWFMultiShapeOverlay.h>

@interface AWFMKMultiShapeOverlayRenderer : MKOverlayRenderer

@property (nonatomic, strong) UIColor *fillColor;
@property (nonatomic, strong) UIColor *strokeColor;
@property (nonatomic, assign) CGFloat lineWidth;
@property (nonatomic, assign) CGLineJoin lineJoin;
@property (nonatomic, assign) CGLineCap lineCap;
@property (nonatomic, assign) CGFloat miterLimit;
@property (nonatomic, strong) NSArray *lineDashPattern;
@property (nonatomic, assign) CGFloat lineDashPhase;

@property (nonatomic, assign) AWFArrowheadType arrowheadType;
@property (nonatomic, assign) CGFloat arrowheadWidth;
@property (nonatomic, assign) CGFloat arrowheadLength;
@property (nonatomic, strong) UIColor *arrowColor;

@end
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//
// AWFMultiShapeOverlayView.h
// AerisMap
//
// Created by Nicholas Shipes on 8/15/14.
// Copyright (c) 2014 HAMweather, LLC. All rights reserved.
//

#import <MapKit/MapKit.h>

@interface AWFMKMultiShapeOverlayView : MKPolygonView

@property (nonatomic, assign) CGFloat arrowheadWidth;
@property (nonatomic, assign) CGFloat arrowheadLength;
@property (nonatomic, strong) UIColor *arrowColor;

@end
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//
// AWFPolygonView.h
// AerisMap
//
// Created by Nicholas Shipes on 4/28/14.
// Copyright (c) 2014 HAMweather, LLC. All rights reserved.
//

#import <MapKit/MapKit.h>

@class AWFAnnotationStyle;

@interface AWFMKPolygonView : MKPolygonView

@property (readonly, nonatomic, strong) AWFAnnotationStyle *style;

@end

This file was deleted.

This file was deleted.

42 changes: 22 additions & 20 deletions AerisWeatherSDK/AerisMap.framework/Versions/A/Headers/AerisMap.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@

#import <AerisUI/AerisUI.h>

#import <AerisMap/AWFMapGlobals.h>
#import <AerisMap/AWFCoordinateBounds.h>
#import <AerisMap/AWFOverlayMetadata.h>
#import <AerisMap/AWFGroupIdentifier.h>
#import <AerisMap/AWFLayerType.h>
#import <AerisMap/AWFMapGlobals.h>
#import <AerisMap/AWFMapItemStyle.h>
#import <AerisMap/AWFOverlayMetadata.h>
#import <AerisMap/AWFStyledMapItem.h>
#import <AerisMap/AWFTileOverlayPath.h>
#import <AerisMap/AWFWeatherMap.h>
#import <AerisMap/AWFWeatherMapConfig.h>
#import <AerisMap/AWFWeatherMapDelegate.h>
Expand All @@ -24,63 +28,56 @@
#import <AerisMap/AWFPolygonDataLayer.h>
#import <AerisMap/AWFTileDataLayer.h>
#import <AerisMap/AWFMultiDataLayer.h>
#import <AerisMap/AWFStyledMapItem.h>

#import <AerisMap/AWFStyledAnnotation.h>
#import <AerisMap/AWFTextLabelAnnotation.h>

#import <AerisMap/AWFMultiShapeOverlay.h>
#import <AerisMap/AWFAnnotation.h>
#import <AerisMap/AWFImageOverlay.h>
#import <AerisMap/AWFTileOverlayPath.h>
#import <AerisMap/AWFPolygon.h>
#import <AerisMap/AWFPolyline.h>
#import <AerisMap/AWFPolygonView.h>
#import <AerisMap/AWFMultiShapeOverlayView.h>
#import <AerisMap/AWFMultiShapeOverlayRenderer.h>
#import <AerisMap/AWFMultiShapeOverlay.h>

#import <AerisMap/AWFGroupIdentifier.h>
#import <AerisMap/AWFMapItemStyle.h>
#import <AerisMap/AWFAnnotationStyle.h>
#import <AerisMap/AWFTextLabelAnnotation.h>
#import <AerisMap/AWFTextAnnotationStyle.h>
#import <AerisMap/AWFEarthquakeAnnotationStyle.h>
#import <AerisMap/AWFFireAnnotationStyle.h>
#import <AerisMap/AWFLightningStrikeAnnotationStyle.h>
#import <AerisMap/AWFLongPressAnnotationStyle.h>
#import <AerisMap/AWFRecordAnnotationStyle.h>
#import <AerisMap/AWFStormCellAnnotationStyle.h>
#import <AerisMap/AWFStormReportAnnotationStyle.h>
#import <AerisMap/AWFTextAnnotationStyle.h>

#import <AerisMap/AWFPolygonStyle.h>
#import <AerisMap/AWFConvectiveOutlookPolygonStyle.h>
#import <AerisMap/AWFDroughtIndexPolygonStyle.h>
#import <AerisMap/AWFFireOutlookPolygonStyle.h>
#import <AerisMap/AWFWarningPolygonStyle.h>
#import <AerisMap/AWFStormCellConeOverlayStyle.h>
#import <AerisMap/AWFWarningPolygonStyle.h>

#import <AerisMap/AWFLegendStyle.h>
#import <AerisMap/AWFAccumulatedPrecipLegendStyle.h>
#import <AerisMap/AWFBarLegendStyle.h>
#import <AerisMap/AWFDataLegendStyle.h>
#import <AerisMap/AWFAccumulatedPrecipLegendStyle.h>
#import <AerisMap/AWFFutureSnowLegendStyle.h>
#import <AerisMap/AWFLightningStrikeLegendStyle.h>
#import <AerisMap/AWFRadarLegendStyle.h>
#import <AerisMap/AWFRecordLegendStyle.h>
#import <AerisMap/AWFSnowDepthLegendStyle.h>
#import <AerisMap/AWFTemperatureLegendStyle.h>
#import <AerisMap/AWFWindLegendStyle.h>
#import <AerisMap/AWFSnowDepthLegendStyle.h>
#import <AerisMap/AWFFutureSnowLegendStyle.h>

#import <AerisMap/AWFAnimation.h>
#import <AerisMap/AWFAnimationTimeline.h>
#import <AerisMap/AWFImageAnimation.h>
#import <AerisMap/AWFPointDataAnimation.h>
#import <AerisMap/AWFAnimatableOverlay.h>

#import <AerisMap/AWFMapControlStyle.h>
#import <AerisMap/AWFTimelineView.h>
#import <AerisMap/AWFBasicControlView.h>
#import <AerisMap/AWFLegendView.h>
#import <AerisMap/AWFWeatherMapLegendView.h>
#import <AerisMap/AWFMapControlStyle.h>
#import <AerisMap/AWFObservationCalloutContentView.h>
#import <AerisMap/AWFTimelineView.h>
#import <AerisMap/AWFWeatherMapLegendView.h>

#import <AerisMap/AWFWeatherMapViewController.h>
#import <AerisMap/AWFMapOptionsViewController.h>
Expand All @@ -90,7 +87,12 @@
#import <AerisMap/AWFAppleMapStrategy.h>
#import <AerisMap/AWFMKImageDataLayer.h>
#import <AerisMap/AWFMKTileDataLayer.h>
#import <AerisMap/AWFMKImageOverlay.h>
#import <AerisMap/AWFMKAnnotationView.h>
#import <AerisMap/AWFMKPolygonView.h>
#import <AerisMap/AWFMKMultiShapeOverlayView.h>
#import <AerisMap/AWFMKMultiShapeOverlayRenderer.h>

#import <AerisMap/AWFEarthquakeAnnotationView.h>
#import <AerisMap/AWFLightningStrikeAnnotationView.h>
#import <AerisMap/AWFStormCellAnnotationView.h>
Expand Down
Binary file modified AerisWeatherSDK/AerisMapboxMap.framework/Versions/A/AerisMapboxMap
Binary file not shown.
Binary file modified AerisWeatherSDK/AerisUI.framework/Versions/A/AerisUI
Binary file not shown.

0 comments on commit 92c92a1

Please sign in to comment.