@@ -26,7 +26,7 @@ public static function lngToXTile(float $lon, int $zoom): array
26
26
$ tile = \floor ($ x );
27
27
return [
28
28
'id ' => $ tile ,
29
- 'position ' => 256 * ($ x - $ tile )
29
+ 'position ' => \round ( 256 * ($ x - $ tile) )
30
30
];
31
31
}
32
32
@@ -42,30 +42,32 @@ public static function latToYTile(float $lat, int $zoom): array
42
42
$ tile = \floor ($ y );
43
43
return [
44
44
'id ' => $ tile ,
45
- 'position ' => 256 * ($ y - $ tile )
45
+ 'position ' => \round ( 256 * ($ y - $ tile) )
46
46
];
47
47
}
48
48
49
49
/**
50
50
* 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
52
53
* @param int $zoom Zoom
53
54
* @return float Longitude of the given OpenStreetMap tile id and zoom
54
55
*/
55
- public static function xTileToLng (int $ x , int $ zoom ): float
56
+ public static function xTileToLng (int $ id , int $ position , int $ zoom ): float
56
57
{
57
- return $ x / \pow (2 , $ zoom ) * 360 - 180 ;
58
+ return ( $ id + $ position / 256 ) / \pow (2 , $ zoom ) * 360 - 180 ;
58
59
}
59
60
60
61
/**
61
62
* 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
63
65
* @param int $zoom Zoom
64
66
* @return float Latitude of the given OpenStreetMap tile id and zoom
65
67
*/
66
- public static function yTileToLat (int $ y , int $ zoom ): float
68
+ public static function yTileToLat (int $ id , int $ position , int $ zoom ): float
67
69
{
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 )))));
69
71
}
70
72
71
73
@@ -76,11 +78,11 @@ public static function yTileToLat(int $y, int $zoom): float
76
78
* @param int $zoom Zoom
77
79
* @return float latitude
78
80
*/
79
- public static function tilePxToLat (float $ pxPosition , int $ tile , int $ zoom ): float
81
+ /* public static function tilePxToLat(float $pxPosition, int $tile, int $zoom): float
80
82
{
81
83
$tileLat = static::yTileToLat($tile, $zoom);
82
84
return $tileLat - \abs(($tileLat - static::yTileToLat($tile + 1, $zoom)) * $pxPosition / 256);
83
- }
85
+ }*/
84
86
85
87
/**
86
88
* 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
89
91
* @param int $zoom Zoom
90
92
* @return float longitude
91
93
*/
92
- public static function tilePxToLng (float $ pxPosition , int $ tile , int $ zoom ): float
94
+ /* public static function tilePxToLng(float $pxPosition, int $tile, int $zoom): float
93
95
{
94
96
$tileLng = static::xTileToLng($tile, $zoom);
95
97
return $tileLng + \abs(($tileLng - static::xTileToLng($tile + 1, $zoom)) * $pxPosition / 256);
96
- }
98
+ }*/
97
99
98
100
/**
99
101
* @var int zoom
@@ -169,20 +171,20 @@ public function __construct(LatLng $centerMap, int $zoom, XY $outputSize)
169
171
);
170
172
171
173
$ 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 )
174
176
);
175
177
$ 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 )
178
180
);
179
181
$ 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 )
182
184
);
183
185
$ 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 )
186
188
);
187
189
}
188
190
0 commit comments