@turf/square 6.5.0 → 7.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/es/index.js +0 -0
- package/dist/js/index.js +0 -0
- package/index.d.ts +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
Takes a bounding box and calculates the minimum square bounding box that
|
|
8
8
|
would contain the input.
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
### Parameters
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
* `bbox` **[BBox][1]** extent in \[west, south, east, north] order
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
### Examples
|
|
15
15
|
|
|
16
16
|
```javascript
|
|
17
17
|
var bbox = [-20, -20, -15, 0];
|
package/dist/es/index.js
CHANGED
|
File without changes
|
package/dist/js/index.js
CHANGED
|
File without changes
|
package/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turf/square",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0-alpha.0",
|
|
4
4
|
"description": "turf square module",
|
|
5
5
|
"author": "Turf Authors",
|
|
6
6
|
"license": "MIT",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"tape": "*"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@turf/distance": "^
|
|
55
|
-
"@turf/helpers": "^
|
|
54
|
+
"@turf/distance": "^7.0.0-alpha.0",
|
|
55
|
+
"@turf/helpers": "^7.0.0-alpha.0"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "0edc4c491b999e5ace770a61e1cf549f7c004189"
|
|
58
58
|
}
|