单击swift显示标记地址(街道地址) [英] Show marker address (street-Address) with clicking in swift

查看:131
本文介绍了单击swift显示标记地址(街道地址)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在谷歌地图中有一个标记的经纬度位置,我想在Swift中将其转换为位置名称字符串。做这个的最好方式是什么?
i希望显示标记的位置地址,我不知道该怎么做。

I have a latitude and longitude location of marker in google maps that I want to convert to the location name String in Swift. What is the best way to do this? i want to show markers' location address and i don't know how to do it .

这里是我用来添加标记和获取纬度的代码和经度:

here is my code that i used to add marker and get latitude and longitude:

func mapView(mapView: GMSMapView, didLongPressAtCoordinate coordinate: CLLocationCoordinate2D) {
        if counterMarker < 2
        {
            counterMarker += 1
            let marker = GMSMarker(position: coordinate)
            marker.appearAnimation = kGMSMarkerAnimationPop

              marker.map = mapView
            marker.position.latitude = coordinate.latitude
            marker.position.longitude = coordinate.longitude

            print(marker.position.latitude)
            print(marker.position.longitude)


            }
    }


推荐答案

    func mapView(mapView: GMSMapView, didLongPressAtCoordinate coordinate: CLLocationCoordinate2D) {
            if counterMarker < 2
            {
                counterMarker += 1
                let marker = GMSMarker(position: coordinate)
                marker.appearAnimation = kGMSMarkerAnimationPop

                  marker.map = mapView
                marker.position.latitude = coordinate.latitude
                marker.position.longitude = coordinate.longitude

                   self.getAddressForLatLng(String(format: "%@",marker.position.latitude), longitude:String(format: "%@",marker.position.longitude)

                }
        }


  func getAddressForLatLng(latitude: String, longitude: String) {
        let url = NSURL(string: "https://maps.googleapis.com/maps/api/geocode/json?latlng=\(latitude),\(longitude)&key=YOUR-APIKEY")
        let data = NSData(contentsOfURL: url!)
        let json = try! NSJSONSerialization.JSONObjectWithData(data!, options: NSJSONReadingOptions.AllowFragments) as! NSDictionary
        if let result = json["results"] as? NSArray {
            if let address = result[0]["address_components"] as? NSArray {
                let number = address[0]["short_name"] as! String
                let street = address[1]["short_name"] as! String
                let city = address[2]["short_name"] as! String
                let state = address[4]["short_name"] as! String
                let zip = address[6]["short_name"] as! String
                print("\n\(number) \(street), \(city), \(state) \(zip) \(address)")
            }
        }
    }

这篇关于单击swift显示标记地址(街道地址)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆