当前位置: 首页>>代码示例>>PHP>>正文


PHP Map::__construct方法代码示例

本文整理汇总了PHP中Map::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Map::__construct方法的具体用法?PHP Map::__construct怎么用?PHP Map::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Map的用法示例。


在下文中一共展示了Map::__construct方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct(Map $map, Conf $conf)
 {
     $this->setImageHandler($map->getImageHandler());
     $this->_logoLayout = LogoLayout::factory($conf->get('logo_layout'));
     $this->_logoFiles = $conf->get('logo_files');
     $this->setWorldMap($map->getWorldMap());
     $leftUpCorner = $map->getLeftUpCorner();
     $this->setLeftUpCorner($leftUpCorner['lon'], $leftUpCorner['lat']);
     $rightDownCorner = $map->getRightDownCorner();
     $this->setRightDownCorner($rightDownCorner['lon'], $rightDownCorner['lat']);
     parent::__construct($map->getImage());
 }
开发者ID:pafciu17,项目名称:gsoc-os-static-maps-api,代码行数:12,代码来源:LogoMap.php

示例2: __construct

 /**
  * Creates a new NumberMap with the given array as its contents. Omitting the argument creates an empty map.
  * @param array $data
  * @param mixed $default
  * @throws \InvalidArgumentException if $default or one of the array values is not numeric
  */
 public function __construct(array $data = array(), $default = 0)
 {
     parent::__construct();
     foreach ($data as $key => $value) {
         $this->set($key, $value);
     }
     if (is_numeric($default)) {
         $this->default = $default;
     } else {
         throw new \InvalidArgumentException("Expected number, found " . gettype($default));
     }
 }
开发者ID:ulrichsg,项目名称:php-collections,代码行数:18,代码来源:NumberMap.php

示例3: __construct

 public function __construct($className, $query)
 {
     parent::__construct($className, $this->getArray($query));
 }
开发者ID:seytar,项目名称:psx,代码行数:4,代码来源:QueryString.php

示例4: __construct

 public function __construct($fileName)
 {
     $this->setImageHandler(ImageHandler::createImageHandlerFromFileExtension($fileName));
     parent::__construct($this->_imageHandler->loadImage($fileName));
 }
开发者ID:pafciu17,项目名称:gsoc-os-static-maps-api,代码行数:5,代码来源:WrongRequestMap.php

示例5: __construct

 public function __construct($className, array $argv)
 {
     parent::__construct($className, $this->getArray($argv));
 }
开发者ID:seytar,项目名称:psx,代码行数:4,代码来源:CliArgument.php


注:本文中的Map::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。