我是 Cakephp 2.3 的新手,并试图在我的应用程序上实现谷歌地图..我已经从这里下载了帮助程序
http://bakery.cakephp.org/articles/marcferna/2012/09/08/google_maps_helper
我按照说明进行操作,但不知道为什么我的地图没有显示在页面上...
这是我所做的
控制器
class LocationController extends AppController{
public $helpers = array('GoogleMap');
public function index(){
}
}
在我的视图页面上我做了这个
<?php echo $this->GoogleMap->map(); ?>
我已将其更改为 true 和 false 以检查它是否有效但没有
var $defaultLocalize = true;
页面来源