mapguesser/src/Geo/Bounds.php
Pőcze Bence a61d2951d7 MAPG-2 Init project MapGuesser
* add composer.json and basic environment
 * add basic classes
 * add basic map with JS and CSS (with demo functionality)
 * add files for docker-compose
 * add launch.json for Docker debug
 * add README
2020-05-17 19:29:06 +02:00

77 lines
1.6 KiB
PHP

<?php namespace MapGuesser\Geo;
class Bounds
{
private float $southLat;
private float $westLng;
private float $northLat;
private float $eastLng;
private bool $initialized = false;
public function __construct(Position $position = null)
{
if ($position === null) {
return;
}
$this->initialize($position);
}
public function extend(Position $position): void
{
if (!$this->initialized) {
$this->initialize($position);
return;
}
$lat = $position->getLat();
$lng = $position->getLng();
if ($lat < $this->southLat) {
$this->southLat = $lat;
}
if ($lng < $this->westLng) {
$this->westLng = $lng;
}
if ($lat > $this->northLat) {
$this->northLat = $lat;
}
if ($lng > $this->eastLng) {
$this->eastLng = $lng;
}
}
public function toJson(): string
{
if (!$this->initialized) {
throw new \Exception("Bounds are not initialized!");
}
return json_encode([
'south' => $this->southLat,
'west' => $this->westLng,
'north' => $this->northLat,
'east' => $this->eastLng,
]);
}
private function initialize(Position $position)
{
$lat = $position->getLat();
$lng = $position->getLng();
$this->northLat = $lat;
$this->westLng = $lng;
$this->southLat = $lat;
$this->eastLng = $lng;
$this->initialized = true;
}
}