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