1 | <?php |
||
20 | class Line extends \Maps\LegacyModel\BaseStrokableElement { |
||
21 | |||
22 | /** |
||
23 | * @since 3.0 |
||
24 | * |
||
25 | * @var LatLongValue[] |
||
26 | */ |
||
27 | protected $coordinates; |
||
28 | |||
29 | /** |
||
30 | * @since 3.0 |
||
31 | * |
||
32 | * @param LatLongValue[] $coordinates |
||
33 | * |
||
34 | * @throws InvalidArgumentException |
||
35 | */ |
||
36 | 6 | public function __construct( array $coordinates = [] ) { |
|
45 | |||
46 | /** |
||
47 | * @since 3.0 |
||
48 | * |
||
49 | * @return LatLongValue[] |
||
50 | */ |
||
51 | 3 | public function getLineCoordinates() { |
|
54 | |||
55 | public function getJSONObject( string $defText = '', string $defTitle = '' ): array { |
||
70 | |||
71 | } |
||
72 |