Skip to content

Commit 0c21db5

Browse files
committed
Fix bounding box value on low zoom level
1 parent fbb65db commit 0c21db5

File tree

3 files changed

+27
-79
lines changed

3 files changed

+27
-79
lines changed

docs/classes/DantSu/OpenStreetMapStaticAPI/MapData.md

+4-58
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ DantSu\OpenStreetMapStaticAPI\MapData convert latitude and longitude to image pi
1919
- *(static)* [latToYTile](#lattoytile)
2020
- *(static)* [xTileToLng](#xtiletolng)
2121
- *(static)* [yTileToLat](#ytiletolat)
22-
- *(static)* [tilePxToLat](#tilepxtolat)
23-
- *(static)* [tilePxToLng](#tilepxtolng)
2422
- [__construct](#-__construct)
2523
- [getLatLngTopLeft](#-getlatlngtopleft)
2624
- [getLatLngTopRight](#-getlatlngtopright)
@@ -101,7 +99,8 @@ Convert horizontal OpenStreetMap tile number ad zoom to longitude.
10199

102100
| Parameter | Type | Description |
103101
|-----------|------|-------------|
104-
| `x` | **int** | Horizontal OpenStreetMap tile id |
102+
| `id` | **int** | Horizontal OpenStreetMap tile id |
103+
| `position` | **int** | Horizontal pixel position on tile |
105104
| `zoom` | **int** | Zoom |
106105

107106

@@ -127,7 +126,8 @@ Convert vertical OpenStreetMap tile number and zoom to latitude.
127126

128127
| Parameter | Type | Description |
129128
|-----------|------|-------------|
130-
| `y` | **int** | Vertical OpenStreetMap tile id |
129+
| `id` | **int** | Vertical OpenStreetMap tile id |
130+
| `position` | **int** | Vertical pixel position on tile |
131131
| `zoom` | **int** | Zoom |
132132

133133

@@ -137,60 +137,6 @@ Convert vertical OpenStreetMap tile number and zoom to latitude.
137137

138138

139139

140-
---
141-
### ::tilePxToLat
142-
143-
Convert pixel position from top of the tile to latitude.
144-
145-
146-
147-
* This method is **static**.
148-
149-
150-
151-
152-
#### Parameters:
153-
154-
| Parameter | Type | Description |
155-
|-----------|------|-------------|
156-
| `pxPosition` | **float** | y pixel position from top of the tile |
157-
| `tile` | **int** | Y tile id |
158-
| `zoom` | **int** | Zoom |
159-
160-
161-
#### Return Value:
162-
163-
**float** : latitude
164-
165-
166-
167-
---
168-
### ::tilePxToLng
169-
170-
Convert pixel position from left of the tile to longitude.
171-
172-
173-
174-
* This method is **static**.
175-
176-
177-
178-
179-
#### Parameters:
180-
181-
| Parameter | Type | Description |
182-
|-----------|------|-------------|
183-
| `pxPosition` | **float** | x pixel position from left of the tile |
184-
| `tile` | **int** | X tile id |
185-
| `zoom` | **int** | Zoom |
186-
187-
188-
#### Return Value:
189-
190-
**float** : longitude
191-
192-
193-
194140
---
195141
### ->__construct
196142

src/MapData.php

+22-20
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static function lngToXTile(float $lon, int $zoom): array
2626
$tile = \floor($x);
2727
return [
2828
'id' => $tile,
29-
'position' => 256 * ($x - $tile)
29+
'position' => \round(256 * ($x - $tile))
3030
];
3131
}
3232

@@ -42,30 +42,32 @@ public static function latToYTile(float $lat, int $zoom): array
4242
$tile = \floor($y);
4343
return [
4444
'id' => $tile,
45-
'position' => 256 * ($y - $tile)
45+
'position' => \round(256 * ($y - $tile))
4646
];
4747
}
4848

4949
/**
5050
* Convert horizontal OpenStreetMap tile number ad zoom to longitude.
51-
* @param int $x Horizontal OpenStreetMap tile id
51+
* @param int $id Horizontal OpenStreetMap tile id
52+
* @param int $position Horizontal pixel position on tile
5253
* @param int $zoom Zoom
5354
* @return float Longitude of the given OpenStreetMap tile id and zoom
5455
*/
55-
public static function xTileToLng(int $x, int $zoom): float
56+
public static function xTileToLng(int $id, int $position, int $zoom): float
5657
{
57-
return $x / \pow(2, $zoom) * 360 - 180;
58+
return ($id + $position / 256) / \pow(2, $zoom) * 360 - 180;
5859
}
5960

6061
/**
6162
* Convert vertical OpenStreetMap tile number and zoom to latitude.
62-
* @param int $y Vertical OpenStreetMap tile id
63+
* @param int $id Vertical OpenStreetMap tile id
64+
* @param int $position Vertical pixel position on tile
6365
* @param int $zoom Zoom
6466
* @return float Latitude of the given OpenStreetMap tile id and zoom
6567
*/
66-
public static function yTileToLat(int $y, int $zoom): float
68+
public static function yTileToLat(int $id, int $position, int $zoom): float
6769
{
68-
return \rad2deg(\atan(\sinh(M_PI * (1 - 2 * $y / \pow(2, $zoom)))));
70+
return \rad2deg(\atan(\sinh(M_PI * (1 - 2 * ($id + $position / 256) / \pow(2, $zoom)))));
6971
}
7072

7173

@@ -76,11 +78,11 @@ public static function yTileToLat(int $y, int $zoom): float
7678
* @param int $zoom Zoom
7779
* @return float latitude
7880
*/
79-
public static function tilePxToLat(float $pxPosition, int $tile, int $zoom): float
81+
/*public static function tilePxToLat(float $pxPosition, int $tile, int $zoom): float
8082
{
8183
$tileLat = static::yTileToLat($tile, $zoom);
8284
return $tileLat - \abs(($tileLat - static::yTileToLat($tile + 1, $zoom)) * $pxPosition / 256);
83-
}
85+
}*/
8486

8587
/**
8688
* Convert pixel position from left of the tile to longitude.
@@ -89,11 +91,11 @@ public static function tilePxToLat(float $pxPosition, int $tile, int $zoom): flo
8991
* @param int $zoom Zoom
9092
* @return float longitude
9193
*/
92-
public static function tilePxToLng(float $pxPosition, int $tile, int $zoom): float
94+
/*public static function tilePxToLng(float $pxPosition, int $tile, int $zoom): float
9395
{
9496
$tileLng = static::xTileToLng($tile, $zoom);
9597
return $tileLng + \abs(($tileLng - static::xTileToLng($tile + 1, $zoom)) * $pxPosition / 256);
96-
}
98+
}*/
9799

98100
/**
99101
* @var int zoom
@@ -169,20 +171,20 @@ public function __construct(LatLng $centerMap, int $zoom, XY $outputSize)
169171
);
170172

171173
$this->latLngTopLeft = new LatLng(
172-
static::tilePxToLat($this->mapCropTopLeft->getY(), $this->tileTopLeft->getY(), $zoom),
173-
static::tilePxToLng($this->mapCropTopLeft->getX(), $this->tileTopLeft->getX(), $zoom)
174+
static::yTileToLat($this->tileTopLeft->getY(), $this->mapCropTopLeft->getY(), $zoom),
175+
static::xTileToLng($this->tileTopLeft->getX(), $this->mapCropTopLeft->getX(), $zoom)
174176
);
175177
$this->latLngTopRight = new LatLng(
176-
static::tilePxToLat($this->mapCropTopLeft->getY(), $this->tileTopLeft->getY(), $zoom),
177-
static::tilePxToLng(256 - $this->mapCropBottomRight->getX(), $this->tileBottomRight->getX(), $zoom)
178+
static::yTileToLat($this->tileTopLeft->getY(), $this->mapCropTopLeft->getY(), $zoom),
179+
static::xTileToLng($this->tileBottomRight->getX(), 256 - $this->mapCropBottomRight->getX(), $zoom)
178180
);
179181
$this->latLngBottomLeft = new LatLng(
180-
static::tilePxToLat(256 - $this->mapCropBottomRight->getY(), $this->tileBottomRight->getY(), $zoom),
181-
static::tilePxToLng($this->mapCropTopLeft->getX(), $this->tileTopLeft->getX(), $zoom)
182+
static::yTileToLat($this->tileBottomRight->getY(), 256 - $this->mapCropBottomRight->getY(), $zoom),
183+
static::xTileToLng($this->tileTopLeft->getX(), $this->mapCropTopLeft->getX(), $zoom)
182184
);
183185
$this->latLngBottomRight = new LatLng(
184-
static::tilePxToLat(256 - $this->mapCropBottomRight->getY(), $this->tileBottomRight->getY(), $zoom),
185-
static::tilePxToLng(256 - $this->mapCropBottomRight->getX(), $this->tileBottomRight->getX(), $zoom)
186+
static::yTileToLat($this->tileBottomRight->getY(), 256 - $this->mapCropBottomRight->getY(), $zoom),
187+
static::xTileToLng($this->tileBottomRight->getX(), 256 - $this->mapCropBottomRight->getX(), $zoom)
186188
);
187189
}
188190

src/samples/sample2.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use \DantSu\OpenStreetMapStaticAPI\Markers;
1515

1616
\header('Content-type: image/png');
17-
(new OpenStreetMap(new LatLng(44.351933, 2.568113), 7, 4096, 4096))
17+
(new OpenStreetMap(new LatLng(44.351933, 2.568113), 5, 1024, 1024))
1818
->addMarkers(
1919
(new Markers(__DIR__ . '/resources/marker.png'))
2020
->setAnchor(Markers::ANCHOR_CENTER, Markers::ANCHOR_BOTTOM)

0 commit comments

Comments
 (0)