1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
<?php
/**
* Map. Create and display a map using Leaflet.
*
* This file is part of Zoph.
*
* Zoph is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Zoph is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with Zoph; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* @author Jeroen Roos
* @package Zoph
*/
namespace geo;
use conf\conf;
use place;
use photo;
/**
* Mapping class.
*
* @author Jeroen Roos
* @package Zoph
*/
class map extends \template\block {
/** @var string id for map */
private $map = "map";
/** @var float center lattitude */
protected $clat;
/** @var float center longitude */
protected $clon;
/** @var int zoom level */
protected $zoom;
/** @var array of tracks to display on this map */
private $tracks=array();
/** @var array of markers to display on this map */
private $markers=array();
/** @var bool whether or not this map can be changed. i.e. used to add a marker */
protected $edit=false;
/**
* Create a new map object
* @param string template to use
* @param array variables to pass to template
* @return map new object
*/
public function __construct($template="map", $vars=null) {
if (!is_array($vars)) {
$vars=array();
}
if (!array_key_exists("id", $vars)) {
$vars["id"]=$this->map;
}
if (!array_key_exists("provider", $vars)) {
$vars["provider"]=conf::get("maps.provider");
}
parent::__construct($template, $vars);
}
/**
* Add a marker to the map
* @param marker marker to add
*/
public function addMarker(marker $marker) {
$this->markers[]=$marker;
}
/**
* Add multiple markers from objects
* @param array Array of objects to get markers from
*/
public function addMarkers(array $objs) {
foreach ($objs as $obj) {
$marker=$obj->getMarker();
if ($marker instanceof marker) {
$this->addMarker($marker);
}
}
}
/**
* Get markers for this map
* @return array array of markers for this map.
* if multiple photos are taken in the same place, that place
* is multiple times in the array, so this function removes doubles
*/
public function getMarkers() {
return array_unique($this->markers, SORT_REGULAR);
}
/**
* Checks whether this maps has markers
* @return bool
*/
public function hasMarkers() {
return !empty($this->markers);
}
/**
* Add a track
* @param track
*/
public function addTrack(track $track) {
$this->tracks[]=$track;
}
/**
* Get tracks
* @return Array tracks
*/
public function getTracks() {
return $this->tracks;
}
/**
* Checks whether this maps has tracks
* @return bool
*/
public function hasTracks() {
return !empty($this->tracks);
}
/**
* Set center and zoom
* This sets the center point and zoom level for the map
* @param float latitude
* @param float longitude
* @param int zoom level
*/
public function setCenterAndZoom($lat=0, $lon=0, $zoom=2) {
$this->clat=(float) $lat;
$this->clon=(float) $lon;
$this->zoom=(int) $zoom;
}
/**
* Set center and zoom from object
* Can take a location object and determine center and zoom from there
* it can also take a photo object to determine c&s.
* If a photo object does not have c&z, it will see if the photo has
* a location set, and determine it from there.
* If a location does not have c&z, it can go up in the tree until
* it find an ancestor with c&z set.
* @param mapable object to get location from
*/
public function setCenterAndZoomFromObj(mapable $obj) {
$lat=$obj->get("lat");
$lon=$obj->get("lon");
$zoom=$obj->get("mapzoom");
if (!$lat && !$lon) {
if ($obj instanceof photo && $obj->location instanceof place) {
$this->setCenterAndZoomFromObj($obj->location);
} else if ($obj instanceof place && (place::getRoot()->getId() != $obj->getId())) {
$this->setCenterAndZoomFromObj($obj->getParent());
}
} else {
$this->setCenterAndZoom($lat ?: 0, $lon ?: 0, $zoom ?: 2);
}
}
/**
* Set whether or not this map can be changed
* (used to add markers to a place or photo)
* @param bool
*/
public function setEditable($edit=true) {
$this->edit=(bool) $edit;
}
}
|