README.md in mapsnatcher-0.1.2 vs README.md in mapsnatcher-0.2
- old
+ new
@@ -25,18 +25,29 @@
## Usage
Usage is as follows:
-```mapsnatcher "http://mapwebsite.com/0/XXX/YYY.png"```
+```mapsnatcher http://mapwebsite.com/0/xxx/yyy.png```
Place `XXX` and `YYY` (case-insensitive) where the respective coordinate
numbers would be in the URL. You will then be prompted to enter the X and Y
boundaries that you would like to capture.
-```mapsnatcher -b "http://mapwebsite.com/0/XXX/YYY.png"```
+```mapsnatcher -b http://mapwebsite.com/0/xxx/yyy.png```
If you are unsure of the boundaries and would like to capture the entire map,
add the `-b` argument and you will only need to enter one valid coordinate;
`mapsnatcher` will do the rest.
If you would like to save the tiles, add the `-s` argument.
+
+Coordinates can be passed into `mapsnatcher` as arguments:
+
+```mapsnatcher http://mapwebsite.com/0/xxx/yyy.png -x 200-300 -y 200-250```
+```mapsnatcher http://mapwebsite.com/0/xxx/yyy.png -b -x 200 -y 200```
+
+And the output file may be specified with `-o`:
+
+```mapsnatcher http://mapwebsite.com/0/xxx/yyy.png -o map.jpg```
+
+If coordinates and output are not specified, you will be prompted for them.