forked from Nandini-13/Byte-Hacks-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DetailViewController.swift
72 lines (54 loc) · 2.04 KB
/
DetailViewController.swift
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
//
// DetailViewController.swift
// ImmiRent
//
// Created by Lola on 8/2/20.
// Copyright © 2020 Karolina Dubiel. All rights reserved.
//
import UIKit
import MapKit
class DetailViewController: UIViewController
{
//outlets
@IBOutlet var tenImageView : UIImageView!
@IBOutlet var titleLabel : UILabel!
@IBOutlet var buroughLabel: UILabel!
@IBOutlet var tag1DetailView : UIImageView!
@IBOutlet var tag2DetailView : UIImageView!
@IBOutlet var coordinateLabel : UILabel!
@IBOutlet var mapView : MKMapView!
var tenement = Tenement()
//var tenImageName : String = ""
override func viewDidLoad()
{
super.viewDidLoad()
tenImageView.image = UIImage(named: tenement.image)
titleLabel?.text = tenement.name
buroughLabel?.text = tenement.burough
coordinateLabel?.text = "\(tenement.latitude), \(tenement.longitude)"
tag1DetailView?.image = UIImage(named: tenement.tag1)
tag2DetailView?.image = UIImage(named: tenement.tag2)
// Do any additional setup after loading the view.
let annotation = MKPointAnnotation()
annotation.title = tenement.name
annotation.coordinate = CLLocationCoordinate2D(latitude: tenement.latitude, longitude: tenement.longitude)
mapView.addAnnotation(annotation)
self.mapView.showAnnotations(self.mapView.annotations, animated: true)
}
// func mapView(_mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView?
// {
// guard annotation is MKPointAnnotation else {return nil}
//
// let identifier = "Annotation"
//
//
// }
/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
// Get the new view controller using segue.destination.
// Pass the selected object to the new view controller.
}
*/
}