| Server IP : 180.180.241.3 / Your IP : 216.73.216.35 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/news/nhrc-bk1/components/com_phocagallery/views/map/tmpl/ |
Upload File : |
<?php
defined('_JEXEC') or die('Restricted access');
phocagalleryimport('phocagallery.render.rendermap');
phocagalleryimport('phocagallery.text.text');
if ($this->tmpl['backbutton'] != '') {
echo $this->tmpl['backbutton'];
}
if (empty($this->map) || $this->map->longitude == '' || $this->map->latitude == '') {
echo '<p>' . JText::_('Google Maps Error Front') . '</p>';
} else {
$text = '<div style="text-align:left"><table border="0" cellspacing="5" cellpadding="5"><tr><td align="left" colspan="2"><b>'. addslashes($this->map->geotitle).'</b></td></tr>';
$text .='<tr>';
$text .='<td valign="top" align="left">'.JHTML::_( 'image.site', $this->map->thumbnail, '', '', '', addslashes($this->map->geotitle)) . '</td>';
$text .='<td valign="top" align="left">'. PhocaGalleryText::strTrimAll(addslashes($this->map->description)).'</td>';
$text .='</tr></table></div>';
echo '<script src="http://www.google.com/jsapi" type="text/javascript"></script>';
echo '<noscript>'.JText::_('GOOGLE MAP ENABLE JAVASCRIPT').'</noscript>';
$cmw = '';
if ((int)$this->tmpl['largemapwidth'] > 0) {
$cmw = 'width:'.$this->tmpl['largemapwidth'].'px;';
}
echo '<div align="center" style="margin:0;padding:0;margin-top:10px;">';
echo '<div id="phocaMap" style="margin:0;padding:0;'. $cmw. 'height:'.$this->tmpl['largemapheight'].'px">';
echo '</div></div>';
?><script type='text/javascript'>//<![CDATA[
google.load("maps", "3.x", {"other_params":"sensor=false"}); <?php
$map = new PhocaGalleryRenderMap();
echo $map->createMap('phocaMap', 'mapPhocaMap', 'phocaLatLng', 'phocaOptions','tstPhocaMap', 'tstIntPhocaMap', $text);
echo $map->cancelEventF();
echo $map->checkMapF();
echo $map->startMapF();
echo $map->setLatLng( $this->map->latitude, $this->map->longitude );
echo $map->startOptions();
echo $map->setZoomOpt($this->map->zoom).','."\n";
echo $map->setCenterOpt().','."\n";
echo $map->setTypeControlOpt().','."\n";
echo $map->setNavigationControlOpt().','."\n";
echo $map->setScaleControlOpt(1).','."\n";
echo $map->setScrollWheelOpt(1).','."\n";
echo $map->setDisableDoubleClickZoomOpt(0).','."\n";
echo $map->setMapTypeOpt()."\n";
echo $map->endOptions();
echo $map->setMap();
// Markers
$iconOutput = $map->setMarkerIcon(0);
echo $iconOutput['js'];
echo $map->setMarker(1,$this->map->geotitle,$this->map->description,$this->map->latitude, $this->map->longitude, $iconOutput['icon'], $text );
echo $map->setListener();
echo $map->endMapF();
echo $map->setInitializeF();
?>//]]></script><?php
}
if ($this->tmpl['detailwindow'] == 7) {
echo '<div> </div>'
. $this->tmpl['efd'];
}
?>