We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 986bd57 commit 606594bCopy full SHA for 606594b
src/Map/src/Twig/UXMapComponent.php
@@ -11,16 +11,22 @@
11
12
namespace Symfony\UX\Map\Twig;
13
14
+use Symfony\UX\Map\Marker;
15
+use Symfony\UX\Map\Point;
16
+
17
/**
18
* @author Simon André <smn.andre@gmail.com>
19
*
20
* @internal
21
*/
22
final class UXMapComponent
23
{
- public int $zoom;
24
+ public ?float $zoom;
25
- public array $center;
26
+ public ?Point $center;
27
28
+ /**
29
+ * @var Marker[]
30
+ */
31
public array $markers;
32
}
0 commit comments