リクエストを送信する1つの方法を見つけました:
Google Maps Geocoding APIリクエストは次の形式を取ります。
https://maps.googleapis.com/maps/api/geocode/outputFormat?parameters ここで、outputFormatは次のいずれかの値になります。
json(推奨)は、JavaScript Object Notation(JSON)での出力を示します。またはxmlは、XMLでの出力を示します。HTTP経由でGoogle Maps Geocoding APIにアクセスするには、次を使用します。
しかし、それは本当に不便です、素早くネイティブな方法はありますか?
私はGMSGeocoderインターフェイスを調べましたが、そのAPIで実行できるのはリバースジオコーディングだけです。
他の人が指摘したように、事前に定義された検索方法はありませんが、ネットワークリクエストを使用して Google Geocoding API に自分でアクセスできます。
func performGoogleSearch(for string: String) {
strings = nil
tableView.reloadData()
var components = URLComponents(string: "https://maps.googleapis.com/maps/api/geocode/json")!
let key = URLQueryItem(name: "key", value: "...") // use your key
let address = URLQueryItem(name: "address", value: string)
components.queryItems = [key, address]
let task = URLSession.shared.dataTask(with: components.url!) { data, response, error in
guard let data = data, let httpResponse = response as? HTTPURLResponse, httpResponse.statusCode == 200, error == nil else {
print(String(describing: response))
print(String(describing: error))
return
}
guard let json = (try? JSONSerialization.jsonObject(with: data)) as? [String: Any] else {
print("not JSON format expected")
print(String(data: data, encoding: .utf8) ?? "Not string?!?")
return
}
guard let results = json["results"] as? [[String: Any]],
let status = json["status"] as? String,
status == "OK" else {
print("no results")
print(String(describing: json))
return
}
DispatchQueue.main.async {
// now do something with the results, e.g. grab `formatted_address`:
let strings = results.compactMap { $0["formatted_address"] as? String }
...
}
}
task.resume()
}
いいえ、Google Maps SDK for iOSにはネイティブの方法はありません。
これは非常に人気のある機能リクエストですが、以下を参照してください。 問題5170:機能リクエスト:ジオコーディングの転送(住所から座標へ)
残念ながら、それをネイティブとして行う方法はありません。この機能がお役に立てば幸いです。
func getAddress(address:String){
let key : String = "YOUR_GOOGLE_API_KEY"
let postParameters:[String: Any] = [ "address": address,"key":key]
let url : String = "https://maps.googleapis.com/maps/api/geocode/json"
Alamofire.request(url, method: .get, parameters: postParameters, encoding: URLEncoding.default, headers: nil).responseJSON { response in
if let receivedResults = response.result.value
{
let resultParams = JSON(receivedResults)
print(resultParams) // RESULT JSON
print(resultParams["status"]) // OK, ERROR
print(resultParams["results"][0]["geometry"]["location"]["lat"].doubleValue) // approximately latitude
print(resultParams["results"][0]["geometry"]["location"]["lng"].doubleValue) // approximately longitude
}
}
}
ジオコーディングソリューションを探しているだけの場合は、私が構築した小さなオープンソースプロジェクトを調べることができます。これは非常に軽量で、Nominatimと呼ばれるOpenStreetMapのジオコーディングAPIを使用しています。ここで確認してください: https://github.com/caloon/NominatimSwift
ランドマークを検索することもできます。
住所とランドマークのジオコーディング:
Nominatim.getLocation(fromAddress: "The Royal Palace of Stockholm", completion: {(error, location) -> Void in
print("Geolocation of the Royal Palace of Stockholm:")
print("lat = " + (location?.latitude)! + " lon = " + (location?.longitude)!)
})
Alamofireおよび GoogleのGeodecode API
Swift 4
func getAddressFromLatLong(latitude: Double, longitude : Double) {
let url = "https://maps.googleapis.com/maps/api/geocode/json?latlng=\(latitude),\(longitude)&key=YOUR_API_KEY_HERE"
Alamofire.request(url).validate().responseJSON { response in
switch response.result {
case .success:
let responseJson = response.result.value! as! NSDictionary
if let results = responseJson.object(forKey: "results")! as? [NSDictionary] {
if results.count > 0 {
if let addressComponents = results[0]["address_components"]! as? [NSDictionary] {
self.address = results[0]["formatted_address"] as? String
for component in addressComponents {
if let temp = component.object(forKey: "types") as? [String] {
if (temp[0] == "postal_code") {
self.pincode = component["long_name"] as? String
}
if (temp[0] == "locality") {
self.city = component["long_name"] as? String
}
if (temp[0] == "administrative_area_level_1") {
self.state = component["long_name"] as? String
}
if (temp[0] == "country") {
self.country = component["long_name"] as? String
}
}
}
}
}
}
case .failure(let error):
print(error)
}
}
}
Google Places APIの Place Search を使用してアドレスのURLセッションを介してリクエストを送信し、jsonの結果を解析できます。完璧ではないかもしれませんが、座標以外の情報を取得できます。
Google Maps API iOS SDKにはネイティブの方法はありません。他の回答で述べたように、これは 長年にわたって要求された機能 です。
覚えておくべきことの1つは、Google Maps APIは主にマップの作成に焦点を合わせていることです。それが第一の目標です。
URLベースのAPI呼び出しまたはその他のサービスを使用する必要があります。たとえば、SmartyStreetsと呼ばれる別のサービスには、フォワードジオコーディングをネイティブでサポートするiOS SDKがあります。以下は、Swift from their iOS SDK documentation page のコード例です。
// Swift: Sending a Single Lookup to the US Zip Code API
package examples;
import Foundation
import SmartystreetsSDK
class ZipCodeSingleLookupExample {
func run() -> String {
let mobile = SSSharedCredentials(id: "SMARTY WEBSITE KEY HERE", hostname: "Host HERE")
let client = SSZipCodeClientBuilder(signer: mobile).build()
// Uncomment the following line to use Static Credentials
// let client = SSZipCodeClientBuilder(authId: "YOUR AUTH-ID HERE", authToken: "YOUR AUTH-TOKEN HERE").build()
let lookup = SSZipCodeLookup()
lookup.city = "Mountain View"
lookup.state = "California"
do {
try client?.send(lookup)
} catch let error as NSError {
print(String(format: "Domain: %@", error.domain))
print(String(format: "Error Code: %i", error.code))
print(String(format: "Description: %@", error.localizedDescription))
return "Error sending request"
}
let result: SSResult = lookup.result
let zipCodes = result.zipCodes
let cities = result.cities
var output: String = String()
if (cities == nil && zipCodes == nil) {
output += "Error getting cities and Zip codes."
return output
}
for city in cities! {
output += "\nCity: " + (city as! SSCity).city
output += "\nState: " + (city as! SSCity).state
output += "\nMailable City: " + ((city as! SSCity).mailableCity ? "YES" : "NO") + "\n"
}
for Zip in zipCodes! {
output += "\nZIP Code: " + (Zip as! SSZipCode).zipCode
output += "\nLatitude: " + String(format:"%f", (Zip as! SSZipCode).latitude)
output += "\nLongitude: " + String(format:"%f", (Zip as! SSZipCode).longitude) + "\n"
}
return output
}
}
完全な開示:私はSmartyStreetsで働いています。