Blame | Last modification | View Log | RSS feed
<?php class GeoPoint { public $latitude; public $longitude; public function __construct($lat, $lng) { $this->latitude = (float) $lat; $this->longitude = (float) $lng; } } ?>
<?php
class GeoPoint {
public $latitude;
public $longitude;
public function __construct($lat, $lng) {
$this->latitude = (float) $lat;
$this->longitude = (float) $lng;
}
?>