-
Notifications
You must be signed in to change notification settings - Fork 1
/
ADAM_MapView.m
703 lines (549 loc) · 24.5 KB
/
ADAM_MapView.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
//
// ADAM_MapView.m
// ADAM by Noscio
//
// Created by Jonathan Lucas Fritz on 12.08.16.
// Copyright © 2016 NOSCIO. All rights reserved.
//
#import "ADAM_MapView.h"
#import "MBProgressHUD.h"
#import "ViewDownInterface.h"
#import "outrepasser.h"
#import "ADAMAnnotation.h"
#import "MarqueeLabel.h"
BOOL updated;
BOOL loadedonce;
ViewDownInterface *interface;
MKCoordinateRegion oldregion;
MKCoordinateRegion startregion;
UIImage *redelevator;
UIImage *bredelevator;
UIImage *greenelevator;
UIImage *bgreenelevator;
@implementation ADAM_MapView
-(void)setup
{
bredelevator = [self imageWithImage:[UIImage imageNamed:@"elevatorinactive.png"] scaledToSize:CGSizeMake(32, 32)];
bgreenelevator = [self imageWithImage:[UIImage imageNamed:@"elevatoractive.png"] scaledToSize:CGSizeMake(32, 32)];
redelevator = [self imageWithImage:[UIImage imageNamed:@"elevatorinactive.png"] scaledToSize:CGSizeMake(16, 16)]; // Ich dachte, wenn ich die Bilder einmal so speichere kann ich sie effizienter aufrufen....
greenelevator = [self imageWithImage:[UIImage imageNamed:@"elevatoractive.png"] scaledToSize:CGSizeMake(16, 16)]; // same
// Irgendwelche Kontrolldinger
loadedonce = NO;
updated = YES;
BOOL userl;
// Ende Kontrolldinger
/// Hier ist der "Stuttgart-Modus"
BOOL stuttgart;
stuttgart = NO;
///Das Interface wird eingeblendet, wenn man eine Annotation anklickt. Oh, das muss ich auch noch kommentieren -.-
interface = [[ViewDownInterface alloc]initWithFrame:CGRectMake(0, self.frame.size.height-self.frame.size.height/7, self.frame.size.width, self.frame.size.height/7)];
interface.bonjour = _fromage;
userl = YES;
[interface setup]; // Mal wieder was setupen... Ist das eigentlich ein Wort? Ich glaube irgendwie nicht
interface.mapviewadam = (id)self;
// Location Manager! Warum initaliziere ich den eigentlich zwei mal?!
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = (id)self;
[self.locationManager requestWhenInUseAuthorization];
[self.locationManager startUpdatingLocation];
if (userl)
{
_map.showsUserLocation = YES;
}
// Hier kommt das Ding was so viel Speicher zieht
_map = [[MKMapView alloc]initWithFrame:self.frame]; // DIE MAP!
[_map setMapType:MKMapTypeStandard];
[_map setZoomEnabled:YES];
[_map setScrollEnabled:YES];
[_map setPitchEnabled:YES];
[_map setShowsCompass:NO];
[_map setShowsTraffic:NO];
[_map setTintColor:[UIColor blackColor]];
_map.delegate = (id)self;
if (userl)
{
_map.showsUserLocation = YES; // Jaja, du bist echt toll
}
[self addSubview:_map];
NSMutableArray *geos = [_fromage coords]; // Jetzt die Koordinatenaufbereitung vorbereiten
int drei;
drei = 0; // Übrigens, die counter heißen bei mir fast immer irgendwas mit drei ^^
for (NSObject *coordinate2 in geos) // eine for schleife um die latitude und die longitude in ein
{
NSMutableDictionary *dictico;
dictico = [_fromage dicforindex:drei];
CLLocationCoordinate2D coordinate = [[geos objectAtIndex:drei] MKCoordinateValue];
// NSLog(@"%f",coordinate.latitude);
// NSLog(@"%f",coordinate.longitude);
MKPointAnnotation *point = [[MKPointAnnotation alloc] init];
point.coordinate = coordinate;
NSString *ident;
// ident = [dictico objectForKey:(@"equipmentnumber")]; // Hat nicht funktioniert, weißte
ident = [NSString stringWithFormat:@"%@",[dictico objectForKey:(@"equipmentnumber")]];
// NSLog(@"LONG %@",ident);
point.subtitle = ident; // Das ist echt viel wichtiger als es aussieht! Über diesen SUbtitle erkenne ich nämlich was ich dem Punkt zuweisen muss - von Bildern bis zu Beschreibungen und Koordinaten
// NSLog(@"%@",dictico.description);
point.title = [_fromage.type objectAtIndex:drei]; // Titel setzen
// Übersetzen
if (!drei)
{
printf("\n Es liegt ein Fehler vor!");
point.subtitle = (@"10009296");
}
if ([point.title isEqualToString:(@"ELEVATOR")])
{
NSString *creator;
creator = [NSString stringWithFormat:@"%d",drei];
point.title = (@"Aufzug bei Station: ");
point.title = [point.title stringByAppendingString:creator];
}
if ([point.title isEqualToString:(@"ESCALATOR")])
{
NSString *creator;
creator = [NSString stringWithFormat:@"%d",drei];
point.title = (@"Rolltreppe bei Station: ");
point.title = [point.title stringByAppendingString:creator];
}
// NSLog(@"%@",point.subtitle);
// Und den ganzen Spaß hinzufügen!
[self.map addAnnotation:point];
drei++;
}
// Stuttgart "Modus"
if (stuttgart)
{
[self setstuttgart];
}
self.map.alpha = 0.0; // Wegen Animation die gleich kommt...
[self addSubview:interface]; // Das Interface hinzufügen
interface.hidden = YES;
self.map.showsBuildings = YES;
NSLog(@"%@",_map.overlays.description);
NSLog(@"%lu Objekte geladen.",(unsigned long)[_fromage.description_ count]); // Kleiner Log
// AIzaSyAfN0znfkVve3HM5itywturlxOpF2Rl9FA // Das hier einfach ignorieren ^^
// [self drawRoute:geos];
}
///Das ist die Startposition
-(void)setgermany
{
[self.map setRegion:startregion animated:YES];
}
///Stuttgart Modus
-(void)setstuttgart
{
// 48.7758° N, 9.1829° E
NSString *location = @"Arnulf-Klett-Platz 2, Germany, 70173";
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
[geocoder geocodeAddressString:location
completionHandler:^(NSArray* placemarks, NSError* error){
if (placemarks && placemarks.count > 0) {
CLPlacemark *topResult = [placemarks objectAtIndex:0];
MKPlacemark *placemark = [[MKPlacemark alloc] initWithPlacemark:topResult];
MKCoordinateRegion region = self.map.region;
region.center = placemark.region.center;
region.span.longitudeDelta /= 5.8;
region.span.latitudeDelta /= 5.8;
MBProgressHUD * hud = [MBProgressHUD showHUDAddedTo:self.viewc.view animated:YES];
hud.detailsLabel.text = (@"Region: Stuttgart");
[MKMapView animateWithDuration:1.5 animations:^{
[self.map setRegion:region animated:YES];
} completion:^(BOOL finished) {
[UIView animateWithDuration:1.0 animations:^{
[MBProgressHUD HUDForView:self.viewc.view];
}];
}];
}
if (error)
{
NSLog(@"%@",error.localizedDescription);
}
}
];
}
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation
{
MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(userLocation.coordinate, 800, 800);
if (!updated) // Einmal hinzoomen reicht!!
{
[_map setRegion:[_map regionThatFits:region] animated:YES];
updated = YES;
}
}
- (void) drawRoute:(NSArray *) path
{
NSInteger numberOfSteps = 5;
CLLocationCoordinate2D coordinates[numberOfSteps];
for (NSInteger index = 0; index < numberOfSteps; index++) {
CLLocation *location = [path objectAtIndex:index];
CLLocationCoordinate2D coordinate = location.coordinate;
coordinates[index] = coordinate;
printf("\n Worked");
}
MKPolyline *polyLine = [MKPolyline polylineWithCoordinates:coordinates count:numberOfSteps];
[self.map addOverlay:polyLine];
}
///Spaß mit Annotationen
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{
//Erstmal schauen ob das der Userstandort ist
if ([annotation isKindOfClass:[MKUserLocation class]])
{
((MKUserLocation *)annotation).title = @"Hier bist du";
return nil;
}
// jetzt kommt das wahrscheinlich am uneffizientesten programmierte im ganzen Code!
else if ([annotation isKindOfClass:[MKPointAnnotation class]]) // use whatever annotation class you used when creating the annotation
{
NSString *identifier = [NSString stringWithFormat:@"An%d",(int)[annotation subtitle]];
// NSLog(@"%@",identifier);
MKAnnotationView* annotationView = [mapView dequeueReusableAnnotationViewWithIdentifier:identifier]; // Gibts das nicht schon?
if (annotationView)
{
[UIView animateWithDuration:1.0
delay:0.2
options: UIViewAnimationOptionCurveEaseOut
animations:^
{
annotationView.alpha = 0.0;
annotationView.alpha = 1.0;
}
completion:^(BOOL finished)
{
}];
return annotationView; // Mal zurückgeben. Hat schon existiert
}
annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation
reuseIdentifier:identifier]; // Hier muss ich es leider erstmal erstellen
NSString *identi;
identi = [[annotationView annotation] subtitle]; // Jetzt seht ihr gleich warum das so wichtig ist
NSString *status;
NSString *typee;
typee = [self.fromage typeforquipmentnumber:identi]; // Unfassbar umständlich, ich weiß. Aber es klappt!!
// NSLog(@"ASKING FOR %@",identi);
status = [self.fromage statusforquipmentnumber:identi]; // Hier gehts auch noch
// NSLog(@"ID: %@",identi);
// NSLog(@"Status: %@",status);
//Jetzt noch das Bildlein setzen
if ([typee isEqualToString:(@"ESCALATOR")]) //Rolltreppe
{
annotationView.image = [UIImage imageNamed:@"costumann.png"];
if ([status isEqualToString:(@"ACTIVE")])
{
annotationView.image = [UIImage imageNamed:@"greenann.png"];
}
}
if ([typee isEqualToString:(@"ELEVATOR")]) // und Aufzug
{
annotationView.image = redelevator;
if ([status isEqualToString:(@"ACTIVE")])
{
annotationView.image = greenelevator;
}
}
annotationView.canShowCallout = YES;
annotationView.detailCalloutAccessoryView = [self detailViewForAnnotation:annotationView];
// Und das ganze schön langsam einblenden, dann fällt es nicht auf wie kacke das eigentlich reinploppt //Das klappt nicht mehr so gut, seit ich reuse-teile verwende. Deshalb ist das jetzt auch am anfang :D
[UIView animateWithDuration:1.0
delay:0.2
options: UIViewAnimationOptionCurveEaseOut
animations:^
{
annotationView.alpha = 0.0;
annotationView.alpha = 1.0;
}
completion:^(BOOL finished)
{
}];
return annotationView; // Dann nur noch zurückgeben!
}
return nil;
}
- (UIButton *)yesButton {
UIImage *image = [UIImage imageNamed:(@"noscio100.png")];
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(0, 0, image.size.width, image.size.height); // don't use auto layout
[button setImage:image forState:UIControlStateNormal];
button.imageView.contentMode = UIViewContentModeScaleAspectFit;
return button;
}
- (UIView *)detailViewForAnnotation:(MKAnnotationView *)annotation {
UIView *view = [[UIView alloc] init];
view.translatesAutoresizingMaskIntoConstraints = false;
UILabel *label = [[UILabel alloc] init];
label.text = [annotation.annotation subtitle];
label.font = [UIFont systemFontOfSize:20];
label.translatesAutoresizingMaskIntoConstraints = false;
label.numberOfLines = 1;
NSString *identi;
identi = [annotation.annotation subtitle];
NSString *descrip;
MarqueeLabel *extratext = [[MarqueeLabel alloc]initWithFrame:CGRectMake(0, 0, 120, 20)];
descrip = [self.fromage desforquipmentnumber:identi];
if ([descrip isEqualToString:(@"")])
{
[view addSubview:extratext];
extratext.text = (@"Keine Beschreibung");
extratext.font = [UIFont systemFontOfSize:self.frame.size.height/50];
}
if (descrip)
{
[view addSubview:extratext];
extratext.text = descrip;
extratext.animationDelay = .2;
extratext.scrollDuration = 1.0;
extratext.font = [UIFont boldSystemFontOfSize:self.frame.size.height/60];
}
NSDictionary *views = NSDictionaryOfVariableBindings(extratext);
// [view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|[label]|" options:0 metrics:nil views:views]];
[view addConstraint:[NSLayoutConstraint constraintWithItem:extratext attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:view attribute:NSLayoutAttributeCenterX multiplier:1 constant:0]];
[view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[extratext]|" options:0 metrics:nil views:views]];
return view;
}
- (UIImage *)imageWithImage:(UIImage *)image scaledToSize:(CGSize)newSize { // Bild verkleinern, sonst ist das zu groß
//UIGraphicsBeginImageContext(newSize);
// In next line, pass 0.0 to use the current device's pixel scaling factor (and thus account for Retina resolution).
// Pass 1.0 to force exact pixel size.
UIGraphicsBeginImageContextWithOptions(newSize, NO, 0.0);
[image drawInRect:CGRectMake(0, 0, newSize.width, newSize.height)];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return newImage;
}
- (void)mapViewDidFinishRenderingMap:(MKMapView *)mapView fullyRendered:(BOOL)fullyRendered // Wenn die Map geladen wurde wird das hier aufgerufen
{
if (!loadedonce) // Das hier lädt nur einmal!
{
loadedonce = YES;
// Die Animation wird nach dem Rendern der Map ausgeführt, eigentlich ganz cool
[UIView animateWithDuration:0.9
delay:0.1
options: UIViewAnimationOptionCurveEaseOut
animations:^
{
self.viewc.imageviewback.transform = CGAffineTransformMakeScale(2, 2);
MBProgressHUD *hud;
hud = [MBProgressHUD HUDForView:self.viewc.view];
hud.detailsLabel.text = (@"Fast fertig!");
self.map.alpha = 0.1;
self.map.alpha = 1.0;
}
completion:^(BOOL finished)
{
self.viewc.imageviewback.hidden = YES;
self.viewc.imageviewback = nil;
startregion = self.map.region;
[MBProgressHUD hideHUDForView:_viewc.view animated:YES]; // Und natürlich das HUD verstecken, sind ja mit dem Groben fertig
}];
}
}
///Error anzeigen!
-(void)showerror
{
UIAlertController *control;
control = [UIAlertController alertControllerWithTitle:(@"Aktion abgebrochen.") message:(@"Der Crash der App wurde verhindert. Offenbar fehlen in der ADAM-API Daten, welche für das Ausführen der gewünschten Aktion erforderlich sind. Beim Klicken auf \"In Ordnung\" werden sie wieder auf die Startposition gesetzt.") preferredStyle:UIAlertControllerStyleAlert]; // Erstellen
UIAlertAction* inordnung = [UIAlertAction actionWithTitle:(@"In Ordnung") style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
[self setgermany]; // Das ist der Handler
}];
[control addAction:inordnung];
[self.viewc presentViewController:control animated:YES completion:nil]; // und anzeigen
}
- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view // Das wird aufgerufen wenn man auf eine Annotation klickst
{
int validone;
validone = 1;
if ([view.annotation isKindOfClass:[MKUserLocation class]])
{
validone = 2;
}
if ([[[view annotation] subtitle] isEqualToString:(@"10009296")])
{
validone = 0;
}
if ([[[view annotation] subtitle] isEqualToString:(@"10440292")])
{
validone = 0;
}
if ([[[view annotation] subtitle] isEqualToString:(@"10272242")])
{
validone = 0;
}
if (validone == 0)
{
[self.map deselectAnnotation:view.annotation animated:YES];
[self showerror];
}
if (validone == 1)
{
// [self.map setShowsPointsOfInterest:NO];
// Dann blende ich erstmal die Credits aus
[UIView animateWithDuration:0.5
delay:0.1
options: UIViewAnimationOptionCurveEaseOut
animations:^
{
self.viewc.ortung.alpha = 1.0;
self.viewc.ortung.alpha = 0.0;
self.viewc.credits.alpha = 1.0;
self.viewc.credits.alpha = 0.0;
}
completion:^(BOOL finished)
{
}];
self.viewc.datenschutz.hidden = YES;
[interface loadforID:[[view annotation] subtitle]]; // Und lade das mit dem Subtitle ( von dem wird man noch öfter hören )
oldregion = mapView.region; // ich merke mir die Region, dass ich wieder an die Stelle springen kann wo der Nutzer vor dem Klick war
MKMapCamera *newCamera=[[MKMapCamera alloc] init]; // Neue Camera für Animation mit Pitch
//set a new camera angle
[newCamera setCenterCoordinate:CLLocationCoordinate2DMake([[view annotation]coordinate].latitude,[[view annotation]coordinate].longitude)];
[newCamera setPitch:60.0];
[newCamera setAltitude:100.0];
[mapView setCamera:newCamera animated:YES]; // Mal hinfliegen
// Hier wird das Bild von Google Streetview zu dem Ortsnamen geladen. Werde ich nicht erklären, ist selbsterklärend
NSString *longi;
NSString *lati;
CLLocationCoordinate2D point;
point = [[view annotation] coordinate];
longi = [[NSNumber numberWithDouble:point.longitude] stringValue];
lati = [[NSNumber numberWithDouble:point.latitude] stringValue];
// 7.590019933
// 50.358767133
// AIzaSyAfN0znfkVve3HM5itywturlxOpF2Rl9FA KEY
// https://maps.googleapis.com/maps/api/streetview?size=600x300&location=46.414382,10.013988&heading=151.78&pitch=-0.76&key=
NSString *urlmaker;
urlmaker = (@"https://maps.googleapis.com/maps/api/streetview?size=500x200&location=");
// urlmaker = [urlmaker stringByAppendingString:lati];
// urlmaker = [urlmaker stringByAppendingString:(@",")];
// urlmaker = [urlmaker stringByAppendingString:longi];
NSString *locii;
locii = [nummerbahnnow valueForKey:[[view annotation] subtitle]];
locii = [locii stringByReplacingOccurrencesOfString:(@" Hbf") withString:(@"")];
urlmaker = [urlmaker stringByAppendingString:locii];
urlmaker = [urlmaker stringByAppendingString:(@"&key=")];
urlmaker = [urlmaker stringByAppendingString:(@"AIzaSyAfN0znfkVve3HM5itywturlxOpF2Rl9FA")];
NSString *urlmaked = [urlmaker stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
[interface setimageurl:urlmaked];
//Fertig!
NSString *identi;
identi = [[view annotation] subtitle]; // Jetzt seht ihr gleich warum das so wichtig ist
NSString *status;
NSString *typee;
typee = [self.fromage typeforquipmentnumber:identi]; // Unfassbar umständlich, ich weiß. Aber es klappt!!
status = [self.fromage statusforquipmentnumber:identi]; // Hier gehts auch noch
if ([typee isEqualToString:(@"ESCALATOR")]) //Rolltreppe
{
view.image = [UIImage imageNamed:@"costumann.png"];
if ([status isEqualToString:(@"ACTIVE")])
{
view.image = [UIImage imageNamed:@"greenann.png"];
}
}
if ([typee isEqualToString:(@"ELEVATOR")]) // und Aufzug
{
view.image = bredelevator;
if ([status isEqualToString:(@"ACTIVE")])
{
view.image = bgreenelevator;
}
}
}
}
- (void)mapView:(MKMapView *)mapView didDeselectAnnotationView:(nonnull MKAnnotationView *)view // Wird beim deselecten der Annotation aufgerufen
{
int validone;
validone = 1;
if ([view.annotation isKindOfClass:[MKUserLocation class]])
{
validone = 2;
}
if ([[[view annotation] subtitle] isEqualToString:(@"10009296")])
{
validone = 0;
}
if ([[[view annotation] subtitle] isEqualToString:(@"10440292")])
{
validone = 0;
}
if ([[[view annotation] subtitle] isEqualToString:(@"10272242")])
{
validone = 0;
}
if (validone == 1)
{
self.viewc.datenschutz.hidden = NO; // Datenschutz unhidden
// Und jetzt reinanimieren... uuui
[UIView animateWithDuration:1.4
delay:0.0
options: UIViewAnimationOptionCurveEaseOut
animations:^
{
NSString *identi;
identi = [[view annotation] subtitle]; // Jetzt seht ihr gleich warum das so wichtig ist
NSString *status;
NSString *typee;
typee = [self.fromage typeforquipmentnumber:identi]; // Unfassbar umständlich, ich weiß. Aber es klappt!!
status = [self.fromage statusforquipmentnumber:identi]; // Hier gehts auch noch
if ([typee isEqualToString:(@"ESCALATOR")]) //Rolltreppe
{
view.image = [UIImage imageNamed:@"costumann.png"];
if ([status isEqualToString:(@"ACTIVE")])
{
view.image = [UIImage imageNamed:@"greenann.png"];
}
}
if ([typee isEqualToString:(@"ELEVATOR")]) // und Aufzug
{
view.image = redelevator;
if ([status isEqualToString:(@"ACTIVE")])
{
view.image = greenelevator;
}
}
[mapView setRegion:oldregion animated:YES];
self.viewc.credits.alpha = 0.0;
self.viewc.credits.alpha = 1.0;
self.viewc.ortung.alpha = 0.0;
self.viewc.ortung.alpha = 1.0;
}
completion:^(BOOL finished)
{
}];
[self.map setShowsPointsOfInterest:YES];
[interface sethiddennow]; // Das wird noch erklärt
}
}
/// Das musste ich vorerst weglassen
-(void)comeinfrombottom:(UIView*)button
{
CGRect oldframe = button.frame;
CGRect newframe = CGRectMake(0, self.frame.size.height+button.frame.size.height, button.frame.size.width, button.frame.size.height);
button.frame = newframe;
[UIView animateWithDuration:0.1
delay:0.0
options: UIViewAnimationOptionCurveEaseOut
animations:^
{
button.frame = oldframe;
}
completion:^(BOOL finished)
{
printf("\n Completed");
}];
}
- (CGFloat)mapView:(MKMapView *)mapView alphaForShapeAnnotation:(MKShape *)annotation
{
printf("\n Trying it...");
// Set the alpha for shape annotations to 0.5 (half opacity)
return 0.5f;
}
- (UIColor *)mapView:(MKMapView *)mapView strokeColorForShapeAnnotation:(MKShape *)annotation
{
// Set the stroke color for shape annotations
return [UIColor whiteColor];
}
- (UIColor *)mapView:(MKMapView *)mapView fillColorForPolygonAnnotation:(MKPolygon *)annotation
{
// Mapbox cyan fill color
return [UIColor colorWithRed:59.0f/255.0f green:178.0f/255.0f blue:208.0f/255.0f alpha:1.0f];
}
@end