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
Nov 22 at 21:24
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
222k25363389
222k25363389
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
Nov 22 at 21:24
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
Nov 22 at 21:24
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
Nov 22 at 21:24
i do not.. I just have the map
– Edison Espinosa
Nov 22 at 21:24
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Nov 22 at 21:24