Skip to content

LupusDei/JMMLocationEngine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

JMMLocationEngine

iOS Location, Four Square Engine and Google Place Engine

Whats New : Goolge Place Search,AutoComplete and NearbyPlaces

Getting Started

To use the Foursquare API or the Google API, you will first need to add the client keys. These can be found in the header files for JMMFoursquareAPIHelper and O16GooglePlacesAPIHelper

  • To get user Location

    Example :

    [JMMLocationEngine getBallParkLocationOnSuccess:^(CLLocation *loc) {
      
    } onFailure:^(NSInteger failCode) {
    
    }];
    
  • Reverse GeoCoding

    Example :

    [JMMLocationEngine getPlacemarkLocationOnSuccess:^(CLPlacemark *place) {
      
    } onFailure:^(NSInteger failCode) {
      
    }];
    
  • FourSquare Nearby Venues

    Example :

      [JMMLocationEngine getFoursquareVenuesNearbyOnSuccess:^(NSArray *venues) {
      
      } onFailure:^(NSInteger failCode) {
      
      }];
    
  • To get FourSquare Venue Search

    Example :

      [JMMLocationEngine getFoursquareVenuesNearbyWithSearchString:searchText onSuccess:^(NSArray *venues) {
      
      } onFailure:^(NSInteger failCode) {
      
      }];
    

Added Google Places API Methods including

About

iOS Location and Four Square Engine

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •