GooglePlacesAPI 1.1.4

GooglePlacesAPI 1.1.4

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Oct 2018
SPMSupports SPM

Maintained by Honghao Zhang.



 
Depends on:
Alamofire~> 4
ObjectMapper~> 3
 

  • By
  • Honghao Zhang

Swift Google Maps API

CI Status

Use Google Maps Web Service APIs in Swift

GooglePlaces is renamed to GooglePlacesAPI as official GooglePlaces pod is coming.

Features:

Requirements

  • iOS 9.0+ / Mac OS X 10.11+ / tvOS 9.0+ / watchOS 2.0+
  • Xcode 8.0+
  • Swift 3.0+

Installation

CocoaPods

  • Google Maps Directions API

    use_frameworks!
    pod 'GoogleMapsDirections', '~> 1.1'
  • Google Places API

    use_frameworks!
    pod 'GooglePlacesAPI', '~> 1.1'

Usage

  • Google Maps Directions API
    import GoogleMapsDirections
    
    GoogleMapsDirections.provide(apiKey: "A VALID GOOGLE MAPS KEY")
    
    let origin = GoogleMapsDirections.Place.stringDescription(address: "Davis Center, Waterloo, Canada")
    let destination = GoogleMapsDirections.Place.stringDescription(address: "Conestoga Mall, Waterloo, Canada")
    
    // You can also use coordinates or placeID for a place
    // let origin = Place.Coordinate(coordinate: LocationCoordinate2D(latitude: 43.4697354, longitude: -80.5397377))
    // let origin = Place.PlaceID(id: "ChIJb9sw59k0K4gRZZlYrnOomfc")
    
    GoogleMapsDirections.direction(fromOrigin: origin, toDestination: destination) { (response, error) -> Void in
      // Check Status Code
      guard response?.status == GoogleMapsDirections.StatusCode.ok else {
        // Status Code is Not OK
        debugPrint(response?.errorMessage)
        return
      }
      
      // Use .result or .geocodedWaypoints to access response details
      // response will have same structure as what Google Maps Directions API returns
      debugPrint("it has \(response?.routes.count ?? 0) routes")
    }
  • Google Places API
    • Place Autocomplete:
      import GooglePlacesAPI
      
      GooglePlacesAPI.provide(apiKey: "A VALID GOOGLE MAPS KEY")
      
      GooglePlacesAPI.placeAutocomplete(forInput: "Pub") { (response, error) -> Void in
        // Check Status Code
        guard response?.status == GooglePlaces.StatusCode.ok else {
          // Status Code is Not OK
          debugPrint(response?.errorMessage)
          return
        }
        
        // Use .predictions to access response details
        debugPrint("first matched result: \(response?.predictions.first?.description)")
      }
      
    • Place Details
      import GooglePlacesAPI
      
      GooglePlacesAPI.provide(apiKey: "A VALID GOOGLE MAPS KEY")
      
      GooglePlacesAPI.placeDetails(forPlaceID: "ChIJb9sw59k0K4gRZZlYrnOomfc") { (response, error) -> Void in
        // Check Status Code
        guard response?.status == GooglePlaces.StatusCode.ok else {
          // Status Code is Not OK
          debugPrint(response?.errorMessage)
          return
        }
        
        // Use .result to access response details
        debugPrint("the formated address is: \(response?.result?.formattedAddress)")
      }

License

The MIT License (MIT)

Copyright (c) 2015 Honghao Zhang (张宏昊)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.