高德取得坐标,百度确定地址

  1. 高德开发平台–定位
    http://lbs.amap.com/api/javascript-api/example/g/0704-2/

  2. 百度地图开放平台–Geocoding API v2
    *创建应用,应用类型(服务端),IP白名单 => 访问应用(AK)

  3. 参考http://blog.csdn.net/fdipzone/article/details/47162431

4.例子结果

116.405285
39.904989
Array
(
    [status] => 0
    [result] => Array
        (
            [location] => Array
                (
                    [lng] => 116.405285024
                    [lat] => 39.9049890463
                )

            [formatted_address] => 北京市东城区西打磨厂街293号
            [business] => 大栅栏,前门,天安门
            [addressComponent] => Array
                (
                    [city] => 北京市
                    [country] => 中国
                    [direction] => 附近
                    [distance] => 15
                    [district] => 东城区
                    [province] => 北京市
                    [street] => 西打磨厂街
                    [street_number] => 293号
                    [country_code] => 0
                )

            [poiRegions] => Array
                (
                )

            [sematic_description] => 北京杜莎夫人蜡像馆东北200米
            [cityCode] => 131
        )

)

你可能感兴趣的:(Map)