を参考にリンク内容
このサイトを参考にしてみたのですが、cocoapodsを入れた後、このサイトに書いてある
let direction = Direction(from:"35.6775602107869,139.692658446729",to: "35.707848364433,139.701456092298",mode: .walking) direction.directionCompletion(handler: { (route) in for route in route.routes { self.mapView.addDirection(path: (route?.overview_polyline?.points)!) } }) { (error) in print (error) }
このコードをviewdidloadに入れるとエラーが出てしまいます。
エラー文
1、Cannot use optional chaining on non-optional value of type 'Any'
2、Value of type 'Any' has no member 'points'
3、Value of type 'Routes' has no member 'overview_polyline'
4、Value of type 'ViewController' has no member 'mapView'
これらのエラーはself.mapview~の箇所に表示されるのですが、この記事が少し古いのが原因でしょうか?
あなたの回答
tips
プレビュー