blob: dd2eea08d9fdbe4dfa94424aa037254b8a1b1c11 (
plain)
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
|
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8">
<title>center | $.geo</title>
<meta name="description" content="jQuery Geo center method">
<meta name="author" content="Ryan Westphal">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../css/style.css?v=2">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
</head>
<body>
<div id="center" data-role="page">
<div data-role="header" data-theme="b">
<h1>center</h1>
</div>
<div data-role="content">
<table>
<tr>
<th>return type</th>
<td>Array ( <a href="http://geojson.org/geojson-spec.html#positions" rel="external">GeoJSON position</a> ) </td>
</tr>
<tr>
<th>syntax</th>
<td>$.geo.center( Array bbox ( <a href="http://geojson.org/geojson-spec.html#bounding-boxes" rel="external">GeoJSON bounding box</a> ) )</td>
</tr>
<tr>
<th>usage</th>
<td><pre><code>var bboxCenter = $.geo.center( bbox )</code></pre></td>
</tr>
</table>
<p>The center method calculates the center of a bbox and returns it as a GeoJSON position.</p>
<p>It operates on bounding boxes and should not be confused with the centroid function, which operates on GeoJSON geometry objects.</p>
<p>This function is called Envelope.centre in JTS (I assume because JTS is built in British Columbia).</p>
</div>
</div> <!-- end of #container -->
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquerygeo.com/jquery.geo-1.0a4.min.js"></script>
<script src="../js/script.js"></script>
<script src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
</body>
</html>
|