Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Ryan Breece
4,160 PointsSwift - Binary operator ... cannot be used with float? I am just experimenting with the lesson files. Can you explain?
Can some provide insight on why I can not use operator ...
struct locations {
let lat: Float
let long: Float
func getLocationRange (distance dist: Float) -> [locations] {
var results: [locations] = []
let latMinusDistance = lat - dist
let latPlusDistance = lat + dist
let longMinusDistance = long - dist
let longPlusDistance = long + dist
for latCoord in (latMinusDistance)...(latPlusDistance) {
for longCoord in (longMinusDistance)...(longPlusDistance) {
let mainCood = locations(lat: latCoord, long: longCoord)
results.append(mainCood)
}
}
return results
}
}
let locationMain = locations(lat: 43.0, long: 37.0)
let distance = locationMain.getLocationRange(distance: 0.1)