JavaScript Toolkit for Rich Web Mapping Applications.
GeoExt is Open Source and enables building desktop-like GIS applications through the web. It is a JavaScript framework that combines the GIS functionality of OpenLayers with the user interface savvy of the ExtJS library provided by Sencha.
Version 3 of GeoExt is the successor to the GeoExt 2.x-series and is built atop the newest official installments of its base libraries; OpenLayers (v3.x and v4.x) and ExtJS 6.
We are trying hard to keep up with developments on both our parent libraries. The current state of GeoExt is compatible with ExtJS 6.2.0 and OpenLayers 4.6.5. This state is released as GeoExt v3.2.0.
OpenLayers | ExtJS | GeoExt |
---|---|---|
3.20.1 | 6.2.0 | 3.0.0 |
3.20.1 / 4.3.x | 6.2.0 | 3.1.0 |
4.6.5 | 6.2.0 | 3.2.0 |
Have a look at the official homepage: https://geoext.github.io/geoext3/
You will find examples, API documentation (with and without inherited functionality from ExtJS), links to mailinglists and more over there.
What you see on https://geoext.github.io/geoext3/ are the contents of the
gh-pages
-branch. If you encounter anything that should be fixed, please issue a pull request against that branch and we will merge it as soon as possible.
You can use GeoExt 3 either via an npm install @geoext/geoext
in your application folder, or (if you want the latest and greatest), you can use it from a git clone
of this repository.
You will have to adjust the classpath
in you app.json
to include geoext3, like below.
Depending on how you retrieved the code from the step before, you will have to adapt the path.
When you installed geoext3 via npm, the path needs to look like ./node_modules/@geoext/geoext/src
.
Else it will be the folder where you cloned the repository into.
"classpath": [
"app",
"${toolkit.name}/src",
"./lib/geoext3/src"
]
In the snippet above, lib/geoext3
is a git clone
of the GeoExt repo.
GeoExt also offers components, which are only compatible with the classic
toolkit of ExtJS (e.g. StateProvider
or GeocoderCombo
).
In case you want to use them you also have to add the classic
folder to the
classpath
. So your complete classpath
definition could look like below:
"classpath": [
"app",
"${toolkit.name}/src",
"./lib/geoext3/src",
"./lib/geoext3/classic"
]
To help with your first GeoExt 3 project, follow the instructions provided to build a GeoExt 3 Universal app. This app runs on the desktop and on mobile.
https://geoext.github.io/geoext3/master/examples/component/map.html
- Basic map component
- Overview component
- Basic TreePanel
- Legends in Treepanels
- Basic print with Mapfish v3
- Popup on a map component
- FeatureGrid component
- Interactively filtered heatmap
- FeatureRenderer component
- MapView form
Read the hints for developers to get started. We look forward to your contributions!
To kickstart the new GeoExt 3 project a code sprint has been done in Bonn from 17th to 19th of June 2015. For more informations check the following links: Code sprint WIKI page, Official blog post of code sprint day 1, Official blog post of the code sprint days 2 and 3
GeoExt is an OSGeo Community project