MapKitを使用して住所の座標にポイントを配置するアプリを作っています。住所の座標はどのようにして見つけられますか?
私は自分のクラスを作成し、クラス内にすべての関数を設定しました。
アドレスの文字列になるgetLocation()を返すことができ、その文字列をCLGeoCoder()。geocodeAdressStringで使用して座標を取得する必要があります。あなたがここに
func geoCodeVendor() {
let vendorLocation = myVendor.getLocation
let geocoder = CLGeocoder()
geocoder.geocodeAddressString(vendorLocation) { (placemarks, error) in
self.centerCoordinate = (placemarks?.first?.location?.coordinate)!
//Whather more you want to do in this completion handler.
}
}
:ここ
は、ベンダーのクラスの場所はあなたのコードは次のようになりますベンダーの通り、都市や国であることを仮定すると、私のクラス
import UIKit
class Vendor {
private var name = String()
private var type = String()
private var location = String()
private var logo = UIImage()
required init(name: String, type: String) {
self.name = name
self.type = type
self.location = ""
self.logo = UIImage()
}
func getName() -> String {
return self.name
}
func setName(name: String) {
self.name = name
}
func getType() -> String {
return self.type
}
func setType(type: String) {
self.type = type
}
func getLocation() -> String {
return self.location
}
func setLocation(address: String) {
self.location = address
}
func getLogo() -> UIImage {
return self.logo
}
func setLogo(image: UIImage) {
self.logo = image
}
}
はどこジオコーディングコードですか? – Wain