You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
- /**
- * @copyright Copyright (c) 2013-2015 2amigOS! Consulting Group LLC
- * @link http://2amigos.us
- * @license http://www.opensource.org/licenses/bsd-license.php New BSD License
- */
- namespace dosamigos\leaflet\layers;
-
- use dosamigos\leaflet\types\LatLng;
-
- trait LatLngTrait
- {
- /**
- * @var \dosamigos\leaflet\types\LatLng holds the latitude and longitude values.
- */
- private $_latLon;
-
- /**
- * @param \dosamigos\leaflet\types\LatLng $latLon the position to render the marker
- */
- public function setLatLng(LatLng $latLon)
- {
- $this->_latLon = $latLon;
- }
-
- /**
- * @return \dosamigos\leaflet\types\LatLng
- */
- public function getLatLng()
- {
- return $this->_latLon;
- }
- }
|