-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GEOT-6494] MBStyle extension (#2743)
* cleaning up javadoc warnings Signed-off-by: Jody Garnett <jody.garnett@gmail.com> * [GEOT-6494] updated test coverage instructions Signed-off-by: Jody Garnett <jody.garnett@gmail.com> * [GEOT-6494] addressing javadoc warnings Signed-off-by: Jody Garnett <jody.garnett@gmail.com> * Formatting clean up Signed-off-by: Jody Garnett <jody.garnett@gmail.com> * javadoc warnings Signed-off-by: Jody Garnett <jody.garnett@gmail.com> * initial move of mbstyle extension and documentation Signed-off-by: Jody Garnett <jody.garnett@gmail.com> * fix build Signed-off-by: Jody Garnett <jody.garnett@gmail.com> * break spec into pages Signed-off-by: Jody Garnett <jody.garnett@gmail.com> * Clean up license references in documentation Signed-off-by: Jody Garnett <jody.garnett@gmail.com> * revise based on feedback Signed-off-by: Jody Garnett <jody.garnett@gmail.com> * remove toctree caption Signed-off-by: Jody Garnett <jody.garnett@gmail.com>
- Loading branch information
1 parent
fbe84e3
commit b709df9
Showing
269 changed files
with
7,802 additions
and
8,019 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# GeoTools Documentation | ||
|
||
GeoTools documentation is provided using a [Attribution 3.0 Unported](LICENSE.md) license. | ||
|
||
Code examples are [explicitly placed into the public domain](LICENSE.txt), to facilitate the easy cut-and-paste of example code. | ||
|
||
## Sphinx | ||
|
||
GeoTools makes use of the python sphinx documentation system: | ||
|
||
``` | ||
pip install sphinx | ||
``` | ||
|
||
The maven compile stage is used to generate documentation: | ||
|
||
``` | ||
mvn compile | ||
mvn compile -Puser | ||
mvn compile -Pdeveloper | ||
``` | ||
|
||
You may also quickly test by calling the ant `build.xml` directly:: | ||
|
||
``` | ||
ant user | ||
ant developer | ||
``` | ||
|
||
Please see the user guide build instructions for more detail. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Mapbox Styles Module | ||
-------------------- | ||
|
||
The ``gt-mbstyle`` module is an unsupported module that provides a parser/encoder to convert between Mapbox Styles and GeoTools style objects. These docs are under active development, along with the module itself. | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
overview | ||
|
||
Specification: | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
spec/index | ||
|
||
References: | ||
|
||
* `MapBox Style Specification <https://www.mapbox.com/mapbox-gl-js/style-spec/>`__ (Mapbox GL JS) | ||
|
Oops, something went wrong.