I am completely new to swift and firebase, and I am having difficulties in retrieving array-elements from firebase database
So this is my firebase database

I can retrieve the other elements like this:
database reference
class ViewController: UIViewController {
var ref: FIRDatabaseReference?
let fileName : String = "jsonFile"
method
func parseFirebaseResponse() {
ref?.child("Vandreture").child(fileName).observe(.value, with:
{ (snapshot) in
let dict = snapshot.value as? [String: AnyObject]
let navn = dict!["navn"] as? String
print(navn as Any)
let type = dict!["type"] as? String
print(type as Any)
let Længde = dict!["length"] as? String
print(Længde as Any)
let link = dict!["link"] as? String
print(link as Any)
})
}
But I have searched for a way to retrieve longitude/latitude pairs, The first pair should be latitude 109.987 longitude 102.987 - but so far without luck - help would really be appreciated :)

