fetching locations points and title and showing on mapkit view
up vote
1
down vote
favorite
I add places using a longtapgesture recognizer and while it shows on my map, it dissapears when i leave the view and then comeback.
so I'm adding the locations using firebase fetching the location and I want it to show on my mapview.
I'm getting the values on snapshot.value and i'm trying to showcase on my mapview, please help me. this is the last step that I can't seem to figure out.
func fetchlocations() {
let ref = Database.database().reference()
ref.child("Map").observe(.value) { (snapshot) in
print(snapshot.value)
let activity = (snapshot.value as AnyObject!)!["activity"] as? String?
let lat = (snapshot.value as AnyObject!)!["lat"] as? String?
let long = (snapshot.value as AnyObject!)!["long"] as? String?
let annotation = MKPointAnnotation()
annotation.coordinate = CLLocationCoordinate2D(latitude: (Double(lat!))!, longitude: (Double(long!))!)
annotation.title = activity
self.mapView?.addAnnotation(annotation)
}
}
swift firebase firebase-realtime-database mapkit mkpointannotation
add a comment |
up vote
1
down vote
favorite
I add places using a longtapgesture recognizer and while it shows on my map, it dissapears when i leave the view and then comeback.
so I'm adding the locations using firebase fetching the location and I want it to show on my mapview.
I'm getting the values on snapshot.value and i'm trying to showcase on my mapview, please help me. this is the last step that I can't seem to figure out.
func fetchlocations() {
let ref = Database.database().reference()
ref.child("Map").observe(.value) { (snapshot) in
print(snapshot.value)
let activity = (snapshot.value as AnyObject!)!["activity"] as? String?
let lat = (snapshot.value as AnyObject!)!["lat"] as? String?
let long = (snapshot.value as AnyObject!)!["long"] as? String?
let annotation = MKPointAnnotation()
annotation.coordinate = CLLocationCoordinate2D(latitude: (Double(lat!))!, longitude: (Double(long!))!)
annotation.title = activity
self.mapView?.addAnnotation(annotation)
}
}
swift firebase firebase-realtime-database mapkit mkpointannotation
Did you implementfunc mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView?
– Kosuke Ogawa
Nov 12 at 1:28
it's not needed, it shows already when I pin it, but disappears when I leave the map view and move to another controller..
– Edison Espinosa
Nov 12 at 15:59
do you somehow recreate an empty mapView when you came back?
– Gerd Castan
Nov 17 at 11:41
i do not.. I just have the map
– Edison Espinosa
yesterday
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I add places using a longtapgesture recognizer and while it shows on my map, it dissapears when i leave the view and then comeback.
so I'm adding the locations using firebase fetching the location and I want it to show on my mapview.
I'm getting the values on snapshot.value and i'm trying to showcase on my mapview, please help me. this is the last step that I can't seem to figure out.
func fetchlocations() {
let ref = Database.database().reference()
ref.child("Map").observe(.value) { (snapshot) in
print(snapshot.value)
let activity = (snapshot.value as AnyObject!)!["activity"] as? String?
let lat = (snapshot.value as AnyObject!)!["lat"] as? String?
let long = (snapshot.value as AnyObject!)!["long"] as? String?
let annotation = MKPointAnnotation()
annotation.coordinate = CLLocationCoordinate2D(latitude: (Double(lat!))!, longitude: (Double(long!))!)
annotation.title = activity
self.mapView?.addAnnotation(annotation)
}
}
swift firebase firebase-realtime-database mapkit mkpointannotation
I add places using a longtapgesture recognizer and while it shows on my map, it dissapears when i leave the view and then comeback.
so I'm adding the locations using firebase fetching the location and I want it to show on my mapview.
I'm getting the values on snapshot.value and i'm trying to showcase on my mapview, please help me. this is the last step that I can't seem to figure out.
func fetchlocations() {
let ref = Database.database().reference()
ref.child("Map").observe(.value) { (snapshot) in
print(snapshot.value)
let activity = (snapshot.value as AnyObject!)!["activity"] as? String?
let lat = (snapshot.value as AnyObject!)!["lat"] as? String?
let long = (snapshot.value as AnyObject!)!["long"] as? String?
let annotation = MKPointAnnotation()
annotation.coordinate = CLLocationCoordinate2D(latitude: (Double(lat!))!, longitude: (Double(long!))!)
annotation.title = activity
self.mapView?.addAnnotation(annotation)
}
}
swift firebase firebase-realtime-database mapkit mkpointannotation
swift firebase firebase-realtime-database mapkit mkpointannotation
edited Nov 10 at 23:37
Frank van Puffelen
220k25361387
220k25361387
asked Nov 10 at 23:27
Edison Espinosa
155
155
Did you implementfunc mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView?
– Kosuke Ogawa
Nov 12 at 1:28
it's not needed, it shows already when I pin it, but disappears when I leave the map view and move to another controller..
– Edison Espinosa
Nov 12 at 15:59
do you somehow recreate an empty mapView when you came back?
– Gerd Castan
Nov 17 at 11:41
i do not.. I just have the map
– Edison Espinosa
yesterday
add a comment |
Did you implementfunc mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView?
– Kosuke Ogawa
Nov 12 at 1:28
it's not needed, it shows already when I pin it, but disappears when I leave the map view and move to another controller..
– Edison Espinosa
Nov 12 at 15:59
do you somehow recreate an empty mapView when you came back?
– Gerd Castan
Nov 17 at 11:41
i do not.. I just have the map
– Edison Espinosa
yesterday
Did you implement
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView?
– Kosuke Ogawa
Nov 12 at 1:28
Did you implement
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView?
– Kosuke Ogawa
Nov 12 at 1:28
it's not needed, it shows already when I pin it, but disappears when I leave the map view and move to another controller..
– Edison Espinosa
Nov 12 at 15:59
it's not needed, it shows already when I pin it, but disappears when I leave the map view and move to another controller..
– Edison Espinosa
Nov 12 at 15:59
do you somehow recreate an empty mapView when you came back?
– Gerd Castan
Nov 17 at 11:41
do you somehow recreate an empty mapView when you came back?
– Gerd Castan
Nov 17 at 11:41
i do not.. I just have the map
– Edison Espinosa
yesterday
i do not.. I just have the map
– Edison Espinosa
yesterday
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244418%2ffetching-locations-points-and-title-and-showing-on-mapkit-view%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Did you implement
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView?
– Kosuke Ogawa
Nov 12 at 1:28
it's not needed, it shows already when I pin it, but disappears when I leave the map view and move to another controller..
– Edison Espinosa
Nov 12 at 15:59
do you somehow recreate an empty mapView when you came back?
– Gerd Castan
Nov 17 at 11:41
i do not.. I just have the map
– Edison Espinosa
yesterday