Пример #1
0
 /**
  * Sets the autocomplete bound.
  *
  * Available prototypes:
  *  - function setBound(Ivory\GoogleMap\Base\Bound $bound = null)
  *  - function setBount(Ivory\GoogleMap\Base\Coordinate $southWest, Ivory\GoogleMap\Base\Coordinate $northEast)
  *  - function setBound(
  *      double $southWestLatitude,
  *      double $southWestLongitude,
  *      double $northEastLatitude,
  *      double $northEastLongitude,
  *      boolean southWestNoWrap = true,
  *      boolean $northEastNoWrap = true
  *  )
  *
  * @throws \Ivory\GoogleMap\Exception\PlaceException If the bound is not valid (prototypes).
  */
 public function setBound()
 {
     $args = func_get_args();
     if (isset($args[0]) && $args[0] instanceof Bound) {
         $this->bound = $args[0];
     } elseif (isset($args[0]) && $args[0] instanceof Coordinate && (isset($args[1]) && $args[1] instanceof Coordinate)) {
         if ($this->bound === null) {
             $this->bound = new Bound();
         }
         $this->bound->setSouthWest($args[0]);
         $this->bound->setNorthEast($args[1]);
     } elseif (isset($args[0]) && is_numeric($args[0]) && (isset($args[1]) && is_numeric($args[1])) && (isset($args[2]) && is_numeric($args[2])) && (isset($args[3]) && is_numeric($args[3]))) {
         if ($this->bound === null) {
             $this->bound = new Bound();
         }
         $this->bound->setSouthWest(new Coordinate($args[0], $args[1]));
         $this->bound->setNorthEast(new Coordinate($args[2], $args[3]));
         if (isset($args[4]) && is_bool($args[4])) {
             $this->bound->getSouthWest()->setNoWrap($args[4]);
         }
         if (isset($args[5]) && is_bool($args[5])) {
             $this->bound->getNorthEast()->setNoWrap($args[5]);
         }
     } elseif (!isset($args[0])) {
         $this->bound = null;
     } else {
         throw PlaceException::invalidAutocompleteBound();
     }
 }
Пример #2
0
 /**
  * Sets the ground overlay bound.
  *
  * Available prototypes:
  *  - function setBound(Ivory\GoogleMap\Base\Bound $bound)
  *  - function setBount(Ivory\GoogleMap\Base\Coordinate $southWest, Ivory\GoogleMap\Base\Coordinate $northEast)
  *  - function setBound(
  *     double $southWestLatitude,
  *     double $southWestLongitude,
  *     double $northEastLatitude,
  *     double $northEastLongitude,
  *     boolean southWestNoWrap = true,
  *     boolean $northEastNoWrap = true
  *  )
  *
  * @throws \Ivory\GoogleMap\Exception\OverlayException If the ground overlay bound is not valid (prototypes).
  */
 public function setBound()
 {
     $args = func_get_args();
     if (isset($args[0]) && $args[0] instanceof Bound) {
         if ($args[0]->hasCoordinates()) {
             $this->bound = $args[0];
         } else {
             throw OverlayException::invalidGroundOverlayBoundCoordinates();
         }
     } elseif (isset($args[0]) && $args[0] instanceof Coordinate && (isset($args[1]) && $args[1] instanceof Coordinate)) {
         $this->bound->setSouthWest($args[0]);
         $this->bound->setNorthEast($args[1]);
     } elseif (isset($args[0]) && is_numeric($args[0]) && (isset($args[1]) && is_numeric($args[1])) && (isset($args[2]) && is_numeric($args[2])) && (isset($args[3]) && is_numeric($args[3]))) {
         $this->bound->setSouthWest(new Coordinate($args[0], $args[1]));
         $this->bound->setNorthEast(new Coordinate($args[2], $args[3]));
         if (isset($args[4]) && is_bool($args[4])) {
             $this->bound->getSouthWest()->setNoWrap($args[4]);
         }
         if (isset($args[5]) && is_bool($args[5])) {
             $this->bound->getNorthEast()->setNoWrap($args[5]);
         }
     } else {
         throw OverlayException::invalidGroundOverlayBound();
     }
 }
Пример #3
0
 public function testCenter()
 {
     $this->bound->setSouthWest(-1, 0, false);
     $this->bound->setNorthEast(1, 2, false);
     $center = $this->bound->getCenter();
     $this->assertSame(0, $center->getLatitude());
     $this->assertSame(1, $center->getLongitude());
     $this->assertTrue($center->isNoWrap());
 }
    public function testRenderWithOptions()
    {
        $map = $this->getMock('Ivory\\GoogleMap\\Map');
        $map->expects($this->once())->method('getJavascriptVariable')->will($this->returnValue('map'));
        $bound = new Bound();
        $bound->setJavascriptVariable('bound');
        $bound->setSouthWest(-1.1, -2.1, true);
        $bound->setNorthEast(1.1, 2.1, true);
        $groundOverlay = new GroundOverlay('url', $bound);
        $groundOverlay->setJavascriptVariable('groundOverlay');
        $groundOverlay->setOptions(array('option1' => 'value1', 'option2' => 'value2'));
        $expected = <<<EOF
groundOverlay = new google.maps.GroundOverlay("url", bound, {"map":map,"option1":"value1","option2":"value2"});

EOF;
        $this->assertSame($expected, $this->groundOverlayHelper->render($groundOverlay, $map));
    }
    public function testRenderWithOptions()
    {
        $map = $this->getMock('Ivory\\GoogleMap\\Map');
        $map->expects($this->once())->method('getJavascriptVariable')->will($this->returnValue('map'));
        $bound = new Bound();
        $bound->setJavascriptVariable('rectangleBound');
        $bound->setSouthWest(-1.1, -2.1);
        $bound->setNorthEast(1.1, 2.1);
        $rectangle = new Rectangle($bound);
        $rectangle->setJavascriptVariable('rectangle');
        $rectangle->setOptions(array('option1' => 'value1', 'option2' => 'value2'));
        $expected = <<<EOF
rectangle = new google.maps.Rectangle({"map":map,"bounds":rectangleBound,"option1":"value1","option2":"value2"});

EOF;
        $this->assertSame($expected, $this->rectangleHelper->render($rectangle, $map));
    }