Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/carlo-colombo/angular-foursquare

foursquare module for angular
https://github.com/carlo-colombo/angular-foursquare

Last synced: 8 days ago
JSON representation

foursquare module for angular

Awesome Lists containing this project

README

        

angular-foursquare
==================
foursquare module for angular
###Configuration
Load `ngFoursquare` module in your app

Initialize `FoursquareProvider` token with the oauth token from [Foursquare](https://developer.foursquare.com/overview/auth.html)
```javascript
myapp.config(function(FoursquareProvider){
FoursquareProvider.token = foursquare_oauth_token
})
```
###Use
angular-foursquare expose a Foursquare instance with rest resource (ngResource) `Users`, `Checkins` and `Venues`
```javascript
$scope.user = Foursquare.Users.get({
userId: 'self'
})
```
an helper method is exposed to search venues using a `Geoposition` object as argument (accepting also a promise of a `Geoposition`)
```javascript
navigator.geolocation.getCurrentPosition(function (pos) {
$scope.$apply(function () {
$scope.venues = Foursquare.search(pos)
})
})
```

###Available methods
- Users#get
- Users#lists
- Venues#search
- Venues#get
- Checkins#add
- Checkins#get
- Lists#add
- Lists#get
- search

Test application
================
http://carlo-colombo.github.io/angular-foursquare/test-app/index.html