Rev 2 | Blame | Compare with Previous | 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;
}
}
?>