Home | History | Annotate | Download | only in route_guide

Lines Matching refs:Feature

62 #pragma mark Demo: Get Feature
65 * Run the getFeature demo. Calls getFeature with a point known to have a feature and a point known
66 * not to have a feature.
82 NSString *str =[NSString stringWithFormat:@"%@\nFound feature called %@ at %@.", self.outputLabel.text, response.location, response.name];
84 NSLog(@"Found feature called %@ at %@.", response.name, response.location);
150 NSString *str =[NSString stringWithFormat:@"%@\nFound feature at %@ called %@.", self.outputLabel.text, response.location, response.name];
152 NSLog(@"Found feature at %@ called %@.", response.location, response.name);
180 * Run the recordRoute demo. Sends several randomly chosen points from the pre-generated feature
200 GRXWriter *locations = [[GRXWriter writerWithContainer:features] map:^id(id feature) {
202 location.longitude = [((NSNumber *) feature[@"location"][@"longitude"]) intValue];
203 location.latitude = [((NSNumber *) feature[@"location"][@"latitude"]) intValue];