CocoaPods trunk is moving to be read-only. Read more on the blog, there are 17 months to go.
TestsTested | ✓ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Victor Berga.
In order to make requests to the offical service, you should provide an username and passowrd. See more info from here.
Based on the documentation provided by Valencia's city hall all services returns three results. Get more information from this PDF (in spanish).
Import main header file:
#import <VODValenciaOpenData/VODValencia.h>
[VODParking findAllByCoordinates:coordinates // User location
completion:^(NSArray *elements, // Completion handler
NSError *error)) {
/** Handle results or error */
}];
[VODTaxi findAllByCoordinates:coordinates // User location
completion:^(NSArray *elements, // Completion handler
NSError *error)) {
/** Handle results or error */
}];
[VODValenbisiParking findAllByCoordinates:coordinates // User location
completion:^(NSArray *elements, // Completion handler
NSError *error)) {
/** Handle results or error */
}];
[VODValenbisiBike findAllByCoordinates:coordinates // User location
completion:^(NSArray *elements, // Completion handler
NSError *error)) {
/** Handle results or error */
}];
[VODWifi findAllByCoordinates:coordinates // User location
completion:^(NSArray *elements, // Completion handler
NSError *error)) {
/** Handle results or error */
}];
[VODTraffic findAllByCoordinates:coordinates // User location
completion:^(NSArray *elements, // Completion handler
NSError *error)) {
/** Handle results or error */
}];
[VODContainer findAllByType:VODOilContainer // Container's type
coordinates:coordinates // User location
ompletion:^(NSArray *elements, // Completion handler
NSError *error)) {
/** Handle results or error */
}];
VBValenciaOpenData is available under the MIT license. See the LICENSE file for more info.