예제 #1
0
 /**
  * Renders a point.
  *
  * @param \Ivory\GoogleMap\Base\Point $point The point.
  *
  * @return string The JS output.
  */
 public function render(Point $point)
 {
     return sprintf('%s = new google.maps.Point(%s, %s);' . PHP_EOL, $point->getJavascriptVariable(), $point->getX(), $point->getY());
 }
예제 #2
0
 public function testXWithValidValue()
 {
     $this->point->setX(1);
     $this->assertSame(1, $this->point->getX());
 }