1 | <?php |
||
11 | trait LatLngTrait |
||
12 | { |
||
13 | /** |
||
14 | * @var \dosamigos\leaflet\types\LatLng holds the latitude and longitude values. |
||
15 | */ |
||
16 | private $_latLon; |
||
17 | |||
18 | /** |
||
19 | * @param \dosamigos\leaflet\types\LatLng $latLon the position to render the marker |
||
20 | */ |
||
21 | 96 | public function setLatLng(LatLng $latLon) |
|
25 | |||
26 | /** |
||
27 | * @return \dosamigos\leaflet\types\LatLng |
||
28 | */ |
||
29 | 102 | public function getLatLng() |
|
33 | } |
||
34 |