Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Jonas Moltumyr
1,939 Pointscode challenge: landmark function
The code challenger won´t accept this answer. Can I get the same result in an easier way, or am I in general way off on this challenge. Cause I do get the right output in playground.
// Enter your code below
func getTowerCoordinates(location: String) -> (lat: Double, lon: Double) {
var lat = 0.0
var lon = 0.0
switch location {
case "Eiffel Tower": lat = 48.8582; lon = 2.2945
case "Great Pyramid": lat = 29.9792; lon = 31.1344
case "Sydney Opera House": lat = 33.8587; lon = 151.2140
default: 0.0;0.0
}
return(lat,lon)
}
1 Answer

Andrey Mitko
14,533 PointsHey Jonas,
Read your task carefully ;) you need to return (Double, Double) not (lat: Double, lon: Double). With best wishes, Andrey
Jonas Moltumyr
1,939 PointsJonas Moltumyr
1,939 PointsThank you, It´s so easy too miss these small details!