-
Notifications
You must be signed in to change notification settings - Fork 1
/
ADAMerci.m
148 lines (117 loc) · 4.57 KB
/
ADAMerci.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
//
// ADAMerci.m
// ADAM by Noscio
//
// Created by Jonathan Lucas Fritz on 12.08.16.
// Copyright © 2016 NOSCIO. All rights reserved.
//
#import "ADAMerci.h"
#import <MapKit/MapKit.h>
@implementation ADAMerci // Ganz wichtiges Teil
//@property NSMutableArray *equip;
//@property NSMutableArray *type;
//@property NSMutableArray *description_;
//@property NSMutableArray *geocoordX;
//@property NSMutableArray *geocoordY;
//@property NSMutableArray *state;
//@property NSMutableArray *stationnumber;
///Gibt ein Dictionarie zurück mit den Werten aus den Arrays welche auf dem jeweiligen Index liegen. Umständliche Lösung! Aber klappt!
-(NSMutableDictionary*)dicforindex:(int)index
{
NSMutableDictionary *dictionaryforindex;
dictionaryforindex = [NSMutableDictionary dictionaryWithObjectsAndKeys:
[_equip objectAtIndex:index], @"equipmentnumber",
[_type objectAtIndex:index], @"type",
[_description_ objectAtIndex:index], @"description",
[_geocoordX objectAtIndex:index], @"geocoordX",
[_geocoordY objectAtIndex:index], @"geocoordY",
[_state objectAtIndex:index], @"state",
[_stationnumber objectAtIndex:index], @"stationnumber",nil];
return dictionaryforindex;
}
-(NSMutableArray*)coords // Hier werden die einzelnen Koordinaten kombiniert und in CLLocationdinger umgewandelt
{
int drei;
drei = 0;
NSMutableArray *geocoords;
geocoords = [[NSMutableArray alloc]init];
for (NSNumber *index in _geocoordX)
{
CLLocationCoordinate2D loc;
NSString *variable = [NSString stringWithFormat:@"%@", [_geocoordX objectAtIndex:drei]];
NSString *variable2 = [NSString stringWithFormat:@"%@", [_geocoordY objectAtIndex:drei]];
loc.longitude = variable.floatValue;
loc.latitude = variable2.floatValue;
// for (NSNumber *geox in _geocoordX)
// {
// NSString *variable = [NSString stringWithFormat:@"%@", geox];
// loc.longitude = variable.floatValue;
//
// }
// for (NSNumber *geoy in _geocoordY)
// {
// NSString *variable = [NSString stringWithFormat:@"%@", geoy];
// loc.latitude = variable.floatValue;
// }
// [geocoords addObject:[NSData dataWithBytes:&loc length:sizeof(loc)]];
[geocoords addObject:[NSValue valueWithMKCoordinate:loc]];
drei++;
}
return geocoords;
}
-(NSString*)statusforquipmentnumber:(NSString*)ID // Hier wird für die ID welche sich auch der annotation subtitle befindet ein Status des Aufzuges ausgegeben
{
// NSLog(@"LOOKUP: %@",ID);
long longlong;
longlong = ID.longLongValue;
// NSLog(@"%ld",longlong);
NSNumber *number;
number = [NSNumber numberWithLong:ID.longLongValue];
// NSLog(@"%@",number);
NSUInteger value = [_equip indexOfObject:number];
// NSLog(@"is on Index: %d",value);
NSString *state_;
state_ = [_state objectAtIndex:value];
// NSLog(@"ID: %@",ID);
// NSLog(@"is marked as %@",state_);
return state_;
}
-(NSString*)desforquipmentnumber:(NSString*)ID // Hier kann man eine Beschreibung ausgeben... Allerdings fehlt die leider relativ oft :(
{
// NSLog(@"LOOKUP: %@",ID);
long longlong;
longlong = ID.longLongValue;
// NSLog(@"%ld",longlong);
NSNumber *number;
number = [NSNumber numberWithLong:ID.longLongValue];
// NSLog(@"%@",number);
NSUInteger value = [_equip indexOfObject:number];
// NSLog(@"is on Index: %d",value);
if (value == NSNotFound)
{
return (@"Nicht gefunden");
}
NSString *state_;
state_ = [_description_ objectAtIndex:value];
// NSLog(@"ID: %@",ID);
// NSLog(@"is marked as %@",state_);
return state_;
}
-(NSString*)typeforquipmentnumber:(NSString*)ID // Und hiermit kann man erkennen, ob es eine Rolltreppe ist ( von denen es aktuell 2 gibt die eingetragen sind ) oder eine der hunderten Aufzüge
{
// NSLog(@"LOOKUP: %@",ID);
long longlong;
longlong = ID.longLongValue;
// NSLog(@"%ld",longlong);
NSNumber *number;
number = [NSNumber numberWithLong:ID.longLongValue];
// NSLog(@"%@",number);
NSUInteger value = [_equip indexOfObject:number];
// NSLog(@"is on Index: %d",value);
NSString *state_;
state_ = [_type objectAtIndex:value];
// NSLog(@"ID: %@",ID);
// NSLog(@"is marked as %@",state_);
return state_;
}
@end