From a6103bc4dca2a6e6eaaefe76ca9ebb75c8a8af29 Mon Sep 17 00:00:00 2001 From: Chris Moore Date: Tue, 13 Nov 2012 09:42:20 -0500 Subject: [PATCH] [Add] ADClusterMapView (0.0.1) --- .../0.0.1/ADClusterMapView.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ADClusterMapView/0.0.1/ADClusterMapView.podspec diff --git a/ADClusterMapView/0.0.1/ADClusterMapView.podspec b/ADClusterMapView/0.0.1/ADClusterMapView.podspec new file mode 100644 index 00000000..cd3c0458 --- /dev/null +++ b/ADClusterMapView/0.0.1/ADClusterMapView.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = "ADClusterMapView" + s.version = "0.0.1" + s.summary = "ADClusterMapView is a drop-in subclass of MKMapView that displays and animate clusters of annotations." + s.description = <<-DESC + ADClusterMapView is a drop-in subclass of MKMapView that + displays and animate clusters of annotations. This is very + useful in cases where you have to display many annotations + on the map. Concept and implementation were described on + Applidium's [website][http://applidium.com/en/news/too_many_pins_on_your_map/]. + DESC + s.homepage = "https://github.com/applidium/ADClusterMapView" + s.license = { :type => 'NetBSD', :file => 'LICENSE' } + s.author = { "Applidium" => "https://github.com/applidium/" } + s.source = { :git => "https://github.com/applidium/ADClusterMapView.git", :commit => "d68d69b238929" } + s.platform = :ios + s.source_files = 'ADClusterMapView/**/*.{h,m}' + s.frameworks = 'MapKit', 'CoreLocation' +end