Subversion Repositories eFlore/Applications.cel

Rev

Rev 2914 | Rev 2925 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2914 Rev 2915
Line 147... Line 147...
147
			if ($lng > $lngmax) { $lngmax = $lng; }
147
			if ($lng > $lngmax) { $lngmax = $lng; }
148
		}
148
		}
149
		$retour['groupe']['bbox'] = array(
149
		$retour['groupe']['bbox'] = array(
150
			'lat_min' => $latmin,
150
			'lat_min' => $latmin,
151
			'lat_max' => $latmax,
151
			'lat_max' => $latmax,
152
			'lon_min' => $lngmin,
152
			'lng_min' => $lngmin,
153
			'lon_max' => $lngmax
153
			'lng_max' => $lngmax
154
		);
154
		);
-
 
155
		// @TODO suggérer un niveau de zoom en fonction de la plus grande dimension
-
 
156
		// de la bounding-box (ne marchera pas dans tous les cas mais ce serait
-
 
157
		// déjà pas mal)
155
		$retour['groupe']['centroide'] = array(
158
		$retour['groupe']['centroide'] = array(
156
			'lat' => ($latmin + $latmax) / 2,
159
			'lat' => ($latmin + $latmax) / 2,
157
			'lon' => ($lngmin + $lngmax) / 2
160
			'lng' => ($lngmin + $lngmax) / 2
158
		);
161
		);
Line 159... Line 162...
159
 
162
 
160
		return $retour;
163
		return $retour;