Skip to content

reorganized docs to add subcategories #897

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/howto/add-a-language.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
How-to add a langauge
How-to add a language
=====================

Languages are stored as JSON files in GeoMoose. Each language is given
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Add Firestations to the catalog

- The catalog should now have a 'Firestations' layer at the top!

.. figure:: ../workshop/images/firestations-in-catalog.png
.. figure:: ../../workshop/images/firestations-in-catalog.png
:alt: Firestations in the catalog

Firestations in the catalog
Expand Down
File renamed without changes.
File renamed without changes.
10 changes: 10 additions & 0 deletions docs/howto/addlayer/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.. _addalayer:

Add a Layer
===========

.. toctree::
:maxdepth: 1
:glob:

./*
30 changes: 30 additions & 0 deletions docs/howto/extent/change-location-format.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
How-to Change the Location Format
=================================

GeoMoose allows three different types of location formats.

- xyz - the default GeoMoose format, which is really map resolution;center x;center y.
- lonlat - Which is formatted as zoom/lon/lat.
- bbox - Which is formatted as west;south;east;north in EPSG:4326.

Replace the example hashtracker in App.js
-----------------------------------------

Remove the following lines:

::

var hash_tracker = new gm3.trackers.HashTracker(app.store);



Replace it with a custom location format
----------------------------------------

Valid location format options are xyz, latlon, and bbox.

::

var hash_tracker = new gm3.trackers.HashTracker(app.store, {
locationFormat: 'bbox'
});
10 changes: 10 additions & 0 deletions docs/howto/extent/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.. _extent:

Extent Customizations
======================

.. toctree::
:maxdepth: 1
:glob:

./*
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 10 additions & 0 deletions docs/howto/identify/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.. _identify:

Add Identifies
==============

.. toctree::
:maxdepth: 1
:glob:

./*
15 changes: 14 additions & 1 deletion docs/howto/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,20 @@ How-Tos
=======

.. toctree::
:maxdepth: 1
:maxdepth: 3
:glob:



addlayer/index
identify/index
select/index
search/index
results/index
vectorediting/index
tabs/index
extent/index


./*

10 changes: 10 additions & 0 deletions docs/howto/results/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.. _results:

Results Customizations
======================

.. toctree::
:maxdepth: 1
:glob:

./*
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The code below shows a very complex example of a data search
that is intended for power users. It uses GeoMoose's demo-parcel
layer.

.. figure:: images/complex-search.png
.. figure:: ../images/complex-search.png


Configure the search service
Expand Down
12 changes: 12 additions & 0 deletions docs/howto/search/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.. _searches:

Add Searches
============

.. toctree::
:maxdepth: 1
:glob:

./*


File renamed without changes.
10 changes: 10 additions & 0 deletions docs/howto/select/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.. _select:

Add Selects
===========

.. toctree::
:maxdepth: 1
:glob:

./*
File renamed without changes.
10 changes: 10 additions & 0 deletions docs/howto/tabs/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.. _tabs:

Catalog and Tab Customization
=============================

.. toctree::
:maxdepth: 1
:glob:

./*
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Vector Editing Introduction
=====================================================================

.. figure:: images/edit01_03.gif
.. figure:: ../images/edit01_03.gif
:alt: Vector Editing Animation

Animation of Vector Editing
Expand Down
10 changes: 10 additions & 0 deletions docs/howto/vectorediting/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.. _vectorediting:

Vector Editing
======================

.. toctree::
:maxdepth: 1
:glob:

./*
3 changes: 2 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ GeoMoose Documentation
======================

.. toctree::
:maxdepth: 2
:maxdepth: 3
:glob:
:titlesonly:

introduction
quickstarts/index
Expand Down