GetMapTagBody() 공개 정적인 메소드

Gives the body map-placement part for the map front end presentation
public static GetMapTagBody ( integer $p_articleNumber, integer $p_languageId, $p_largeMap = false ) : string
$p_articleNumber integer
$p_languageId integer
리턴 string
예제 #1
0
파일: preview.php 프로젝트: nidzix/Newscoop
</div>
<div class="clear" style="height:10px;"></div>
<!-- Map Preview Begin -->
<div class="geomap_container">
  <div class="geomap_locations">
    <?php 
echo Geo_Map::GetMapTagList($f_article_number, $f_language_id);
?>
  </div>
  <div class="geomap_menu">
    <a href="#" class="ui-state-default text-button" onClick="<?php 
echo Geo_Map::GetMapTagCenter($f_article_number, $f_language_id);
?>
 return false;"><?php 
putGS('show initial map view');
?>
</a>
  </div>
  <div class="geomap_map">
    <div class="geomap_menu">
        <?php 
echo Geo_Map::GetMapTagBody($f_article_number, $f_language_id);
?>
    </div>
  </div>
</div>
<div style="clear:both" ></div>
<!-- Map Preview End //-->
</body>
</html>
예제 #2
0
 /**
  * @param int $p_articleNumber
  * @param int $p_languageId
  * @return string
  */
 public static function GetMapTagBody($p_articleNumber, $p_languageId)
 {
     return Geo_Map::GetMapTagBody((int) $p_articleNumber, (int) $p_languageId);
 }