Current Directory: /home/astoriaah/www/old15/modules/mod_jbmaps2/fields
Viewing File: /home/astoriaah/www/old15/modules/mod_jbmaps2/fields/previewmap.php
<?php
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
jimport('joomla.form.formfield');
class JFormFieldPreviewMap extends JFormField {
public function getInput() {
$document = JFactory::getDocument();
$document->addStyleDeclaration('.gmnoprint img {max-width: none;}#jform_params_mapcustomstyle{height:300px;width:400px}label#jform_params_previewmap-lbl,#map{clear:both}');
$document->addScript('http://maps.google.com/maps/api/js?sensor=false&libraries=weather');
$document->addScript(JURI::root(true). '/modules/mod_jbmaps2/js/admin.js');
$document->addScriptDeclaration("var siteRoot = '". JURI::root() ."';"); //base path for style files
return '<div id="map" style="height:300px;width:500px;max-width:100%"></div><div id="jbmaps2-notices"></div>';
}
}