Skip to content

Commit 2df8c55

Browse files
committed
move getCenter method
1 parent 94332cb commit 2df8c55

File tree

5 files changed

+51
-50
lines changed

5 files changed

+51
-50
lines changed

docs/classes/DantSu/OpenStreetMapStaticAPI/MapData.md

-27
Original file line numberDiff line numberDiff line change
@@ -19,7 +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)* [getCenter](#getcenter)
2322
- *(static)* [getBoundingBoxFromPoints](#getboundingboxfrompoints)
2423
- *(static)* [getCenterAndZoomFromBoundingBox](#getcenterandzoomfromboundingbox)
2524
- [__construct](#-__construct)
@@ -145,32 +144,6 @@ Convert vertical OpenStreetMap tile number and zoom to latitude.
145144

146145

147146

148-
---
149-
### ::getCenter
150-
151-
Get center between two coordinates.
152-
153-
154-
155-
* This method is **static**.
156-
157-
158-
159-
160-
#### Parameters:
161-
162-
| Parameter | Type | Description |
163-
|-----------|------|-------------|
164-
| `point1` | **\DantSu\OpenStreetMapStaticAPI\LatLng** | Vertical OpenStreetMap tile id |
165-
| `point2` | **\DantSu\OpenStreetMapStaticAPI\LatLng** | Vertical pixel position on tile |
166-
167-
168-
#### Return Value:
169-
170-
**\DantSu\OpenStreetMapStaticAPI\LatLng** : midpoint between the given coordinates
171-
172-
173-
174147
---
175148
### ::getBoundingBoxFromPoints
176149

docs/classes/DantSu/OpenStreetMapStaticAPI/Utils/GeographicConverter.md

+27
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
- *(static)* [earthRadiusAtLatitude](#earthradiusatlatitude)
1515
- *(static)* [metersToLatLng](#meterstolatlng)
1616
- *(static)* [latLngToMeters](#latlngtometers)
17+
- *(static)* [getCenter](#getcenter)
1718

1819
### ::earthRadiusAtLatitude
1920

@@ -93,6 +94,32 @@ Get distance in meters between two points.
9394

9495

9596

97+
---
98+
### ::getCenter
99+
100+
Get center between two coordinates.
101+
102+
103+
104+
* This method is **static**.
105+
106+
107+
108+
109+
#### Parameters:
110+
111+
| Parameter | Type | Description |
112+
|-----------|------|-------------|
113+
| `point1` | **\DantSu\OpenStreetMapStaticAPI\LatLng** | Vertical OpenStreetMap tile id |
114+
| `point2` | **\DantSu\OpenStreetMapStaticAPI\LatLng** | Vertical pixel position on tile |
115+
116+
117+
#### Return Value:
118+
119+
**\DantSu\OpenStreetMapStaticAPI\LatLng** : midpoint between the given coordinates
120+
121+
122+
96123
---
97124

98125

src/MapData.php

+3-22
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
namespace DantSu\OpenStreetMapStaticAPI;
44

55

6+
use DantSu\OpenStreetMapStaticAPI\Utils\GeographicConverter;
7+
68
/**
79
* DantSu\OpenStreetMapStaticAPI\MapData convert latitude and longitude to image pixel position.
810
*
@@ -73,27 +75,6 @@ public static function yTileToLat(int $id, int $position, int $zoom, int $tileSi
7375
return \rad2deg(\atan(\sinh(M_PI * (1 - 2 * ($id + $position / $tileSize) / \pow(2, $zoom)))));
7476
}
7577

76-
/**
77-
* Get center between two coordinates.
78-
* @param LatLng $point1 Vertical OpenStreetMap tile id
79-
* @param LatLng $point2 Vertical pixel position on tile
80-
* @return LatLng midpoint between the given coordinates
81-
*/
82-
public static function getCenter(LatLng $point1, LatLng $point2): LatLng
83-
{
84-
//return new LatLng(($point1->getLat() + $point2->getLat()) / 2, ($point1->getLng() + $point2->getLng()) / 2);
85-
$dLng = \deg2rad($point2->getLng() - $point1->getLng());
86-
$lat1 = \deg2rad($point1->getLat());
87-
$lat2 = \deg2rad($point2->getLat());
88-
$lng1 = \deg2rad($point1->getLng());
89-
$bx = \cos($lat2) * \cos($dLng);
90-
$by = \cos($lat2) * \sin($dLng);
91-
return new LatLng(
92-
\rad2deg(\atan2(\sin($lat1) + \sin($lat2), \sqrt(\pow(\cos($lat1) + $bx, 2) + \pow($by, 2)))),
93-
\rad2deg($lng1 + \atan2($by, \cos($lat1) + $bx))
94-
);
95-
}
96-
9778
/**
9879
* Transform array of LatLng to bounding box
9980
*
@@ -146,7 +127,7 @@ public static function getCenterAndZoomFromBoundingBox(LatLng $topLeft, LatLng $
146127
$pxZoneHeight = ($bottomTilePos['id'] - $topTilePos['id']) * $tileSize + $bottomTilePos['position'] - $topTilePos['position'];
147128

148129
return [
149-
'center' => MapData::getCenter($topLeft, $bottomRight),
130+
'center' => GeographicConverter::getCenter($topLeft, $bottomRight),
150131
'zoom' => \intval(
151132
\floor(
152133
\log(

src/Utils/GeographicConverter.php

+21
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,25 @@ public static function latLngToMeters(LatLng $from, LatLng $end): float
7777
return \abs($earthRadius * 2 * \atan2(\sqrt($a), \sqrt(1 - $a)));
7878
}
7979

80+
81+
/**
82+
* Get center between two coordinates.
83+
* @param LatLng $point1 Vertical OpenStreetMap tile id
84+
* @param LatLng $point2 Vertical pixel position on tile
85+
* @return LatLng midpoint between the given coordinates
86+
*/
87+
public static function getCenter(LatLng $point1, LatLng $point2): LatLng
88+
{
89+
//return new LatLng(($point1->getLat() + $point2->getLat()) / 2, ($point1->getLng() + $point2->getLng()) / 2);
90+
$dLng = \deg2rad($point2->getLng() - $point1->getLng());
91+
$lat1 = \deg2rad($point1->getLat());
92+
$lat2 = \deg2rad($point2->getLat());
93+
$lng1 = \deg2rad($point1->getLng());
94+
$bx = \cos($lat2) * \cos($dLng);
95+
$by = \cos($lat2) * \sin($dLng);
96+
return new LatLng(
97+
\rad2deg(\atan2(\sin($lat1) + \sin($lat2), \sqrt(\pow(\cos($lat1) + $bx, 2) + \pow($by, 2)))),
98+
\rad2deg($lng1 + \atan2($by, \cos($lat1) + $bx))
99+
);
100+
}
80101
}

src/samples/sample2.php

-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@
8484
->addPoint(new LatLng(44.351933, 2.568113))
8585
->addPoint(new LatLng(57.704334, 11.963886))
8686
)
87-
->fitToDraws(10)
8887
->getImage()
8988
->displayPNG();
9089

0 commit comments

Comments
 (0)