Cakephp从纬度和经度谷歌地图获取地址

时间:2013-07-15 14:44:42

标签: google-maps cakephp google-maps-api-3 cakephp-2.0 cakephp-2.1

我正在开发Cakephp 2.x ..我已将谷歌地图实施到我的应用程序中......我正在使用这个助手

https://github.com/marcferna/CakePHP-GoogleMapHelper

我想要的是我想在经度和纬度的基础上得到地址..不知道我怎么能得到这个,因为我从来没有在谷歌地图上工作...

这是我的视图页面的代码,显示地图

      $map_options = array(
    'id' => 'map_canvas',
    'width' => '950px',
    'height' => '600px',
    'style' => '',
    'zoom' => 16,
    'type' => 'ROADMAP',
    'custom' => null,
    'localize' => false,
    'latitude' => $latitude,
    'longitude' =>  $longitude,
    'address' => '1 Infinite Loop, Cupertino',
    'marker' => true,
    'markerTitle' => 'This is my position',
    'markerIcon' => 'http://google-maps-icons.googlecode.com/files/home.png',
    'markerShadow' => 'http://google-maps-icons.googlecode.com/files/shadow.png',
    'infoWindow' => true,
    'windowText' => 'My Position'
);
?>



<?php echo $this->GoogleMap->map($map_options); 

2 个答案:

答案 0 :(得分:0)

可能想查看此链接,了解如何从地址获取经度和纬度

https://stackoverflow.com/a/8633623/2003890

答案 1 :(得分:0)