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 firebaseenter image description here 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)
}
}









share|improve this question
























  • 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















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 firebaseenter image description here 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)
}
}









share|improve this question
























  • 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













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 firebaseenter image description here 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)
}
}









share|improve this question















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 firebaseenter image description here 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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 10 at 23:37









Frank van Puffelen

220k25361387




220k25361387










asked Nov 10 at 23:27









Edison Espinosa

155




155












  • 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


















  • 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
















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

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















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






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














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





















































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







Popular posts from this blog

Full-time equivalent

Bicuculline

さくらももこ