我正在使用biostall 的 codeigniter 谷歌地图库来显示我的谷歌地图。我按照说明显示信息窗口并在页面上正确显示地图。目前信息窗口仅在单击指针时打开。到目前为止的进展就像演示中显示的紫色图标。点击快速演示。
我无法让信息窗口默认打开。请指教。
配置代码如下:
// map
$this->load->library('googlemaps');
// Initialize our map. Here you can also pass in additional parameters for customising the map (see below)
$config['center'] = '37.4419, -122.1419';
$config['zoom'] = '14';
$config['map_width'] = '500px';
$this->googlemaps->initialize($config);
// set markers
$marker = array();
$marker['position'] = '37.4419, -122.1419';
$marker['infowindow_content'] = '<b>We are here!!</b>;
$marker['animation'] = 'DROP';
$this->googlemaps->add_marker($marker);
// Create the map. This will return the Javascript to be included in our pages <head></head> section and the HTML code to be placed where we want the map to appear.
$data['map'] = $this->googlemaps->create_map();