0

我正在开发 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); 
4

1 回答 1

0

所以基本上反向地理编码?

看看这个: https ://developers.google.com/maps/documentation/javascript/examples/geocoding-reverse

于 2013-07-15T15:10:54.037 回答