forked from soundandvision/HSClusterMapView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHSClusterMapView.podspec
More file actions
19 lines (15 loc) · 1.13 KB
/
Copy pathHSClusterMapView.podspec
File metadata and controls
19 lines (15 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "HSClusterMapView"
s.version = "1.0.2"
s.summary = "A GMSMapView subclass which clusters GMSMarkers within close proximity."
s.description = "A GMSMapView subclass which clusters groups of GMSMarkers and replaces them with single GMSMarkers, enabling the developer to generate custom UIImages for each cluster on the fly. It also includes a GMSMapView subclass, HSMapView, which does not cluster GMSMarkers, but instead keeps track of the GMSMarkers on the map internally, eliminating the need to store them elsewhere. HSMapView aims to provide a clean map interface to work with the Google Maps for iOS SDK."
s.homepage = "https://github.com/hotschedules/HSClusterMapView"
s.license = 'MIT'
s.author = { "abouzek" => "alan.bouzek@gmail.com" }
s.source = { :git => "https://github.com/hotschedules/HSClusterMapView.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.frameworks = 'UIKit', 'MapKit', 'GoogleMaps'
s.dependency 'GoogleMaps', '~> 1.10.1'
end