All Projects → geosolutions-it → Mapstore2

geosolutions-it / Mapstore2

Licence: other
Modern webmapping with OpenLayers, Leaflet and React

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Mapstore2

rlayers
React Component Library for OpenLayers
Stars: ✭ 98 (-60.96%)
Mutual labels:  maps, gis, openlayers
Ui Leaflet
AngularJS directive to embed an interact with maps managed by Leaflet library
Stars: ✭ 315 (+25.5%)
Mutual labels:  gis, maps, leaflet
vaguely-rude-places
The map of Vaguely Rude Place Names
Stars: ✭ 19 (-92.43%)
Mutual labels:  geojson, maps, leaflet
echarty
Minimal R/Shiny Interface to ECharts.js
Stars: ✭ 49 (-80.48%)
Mutual labels:  geojson, maps, leaflet
Mapboard
A framework for data-rich web mapping 🌎📊✨
Stars: ✭ 29 (-88.45%)
Mutual labels:  gis, maps, leaflet
django-graphql-geojson
GeoJSON support for Graphene Django
Stars: ✭ 61 (-75.7%)
Mutual labels:  geojson, maps, gis
tailormap
B3partners Tailormap repository
Stars: ✭ 26 (-89.64%)
Mutual labels:  maps, gis, openlayers
Iclient Javascript
Modern GIS Web Client for JavaScript, based on Leaflet\OpenLayers\MapboxGL-JS\Classic(iClient8C), enhanced with ECharts\D3\MapV etc. Contributed by SuperMap & community.
Stars: ✭ 593 (+136.25%)
Mutual labels:  gis, openlayers, leaflet
Django Rest Framework Gis
Geographic add-ons for Django REST Framework. Maintained by the OpenWISP Project.
Stars: ✭ 830 (+230.68%)
Mutual labels:  hacktoberfest, gis, geojson
Agentmaps
Make social simulations on interactive maps with Javascript! Agent-based modeling for the web.
Stars: ✭ 822 (+227.49%)
Mutual labels:  gis, maps, leaflet
Gwt Ol
GWT wrapper for OpenLayers 3+ using JSInterop
Stars: ✭ 57 (-77.29%)
Mutual labels:  gis, openlayers, maps
Leaflet Geoman
🍂🗺️ The most powerful leaflet plugin for drawing and editing geometry layers
Stars: ✭ 1,088 (+333.47%)
Mutual labels:  gis, geojson, leaflet
Geoext3
A JavaScript framework that combines the GIS functionality of OpenLayers with all features of the ExtJS library
Stars: ✭ 121 (-51.79%)
Mutual labels:  hacktoberfest, gis, openlayers
Pulley
A library to imitate the iOS 10 Maps UI.
Stars: ✭ 1,928 (+668.13%)
Mutual labels:  hacktoberfest, maps
Aerialbot
A simple yet highly configurable bot that tweets geotagged aerial imagery of a random location in the world.
Stars: ✭ 157 (-37.45%)
Mutual labels:  gis, maps
Mapfish Print
A component of MapFish for printing templated cartographic maps. This module is the Java serverside module. For support post to the mailing list: https://groups.google.com/forum/#!forum/mapfish-print-users
Stars: ✭ 159 (-36.65%)
Mutual labels:  gis, maps
Django Loci
Reusable Django app for storing geographic and indoor coordinates. Maintained by the OpenWISP Project.
Stars: ✭ 164 (-34.66%)
Mutual labels:  hacktoberfest, gis
Rioxarray
geospatial xarray extension powered by rasterio
Stars: ✭ 148 (-41.04%)
Mutual labels:  hacktoberfest, gis
Mapshaper Plus
Generate geojson files for Echarts Map,base on mapshaper(Echarts 地图数据压缩转换)
Stars: ✭ 163 (-35.06%)
Mutual labels:  gis, geojson
Azuremapscodesamples
A set of code samples for the Azure Maps web control.
Stars: ✭ 167 (-33.47%)
Mutual labels:  gis, maps

Build Status Coverage Status Codacy Badge Documentation Status Twitter URL

MapStore

MapStore is a framework to build web mapping applications using standard mapping libraries, such as OpenLayers and Leaflet.

MapStore has several example applications:

  • MapViewer is a simple viewer of preconfigured maps (optionally stored in a database using GeoStore)
  • MapPublisher has been developed to create, save and share in a simple and intuitive way maps and mashups created selecting contents by server like OpenStreetMap, Google Maps, MapQuest or specific servers provided by your organization or third party.

For more information check the MapStore documentation!

Download

You can download the WAR file from the latest release here

All the releases

Quick Start

There are two quick ways to test out MapStore. Either using Docker or a local java web container like Apache Tomcat

Using Docker

Pull the latest image from Docker Hub:

docker pull geosolutionsit/mapstore2
docker run --name mapstore -p8080:8080  geosolutionsit/mapstore2

Then you can access MapStore using the following URL:

http://localhost:8080/mapstore

Use the default credentials (admin / admin) to login and start creating your maps!

Using the Web Archive (WAR file)

After downloading the MapStore war file, install it in your java web container (e.g. Tomcat), with usual procedures for the container (normally you only need to copy the war file in the webapps subfolder).

Check out here which version of Java and Tomcat are needed.

Then you can access MapStore using the following URL (assuming the web container is on the standard 8080 port):

http://localhost:8080/mapstore

Use the default credentials (admin / admin) to login and start creating your maps!

Documentation

You can find more documentation about how to build, install or develop with MapStore on the documentation site.

License

MapStore is Free and Open Source software, it is based on OpenLayers, Leaflet and ReactJS, and is licensed under the Simplified BSD License.

Demo Instances

We have the following instances:

  1. a DEV instance, which can be accessed here, where all the changes are deployed once they are published on the Master branch of our repo
  2. a QA instance, which can be accessed here, that becomes active 1 week before any release, during the hardening phase, and deploys the release branch whenever a fix is pushed onto it.
  3. a STABLE instance, which can be accessed here, that gets deployed on demand after each release.

As a user you need to be aware of STABLE and DEV, QA is used internally before a release; for 1 Week it will diverge from STABLE as it is actually anticipating the next stable. So, if you want to test latest features use DEV, if you are not that brave use STABLE. You might forget that QA exists unless you are parte of the developers team.

Start developing your custom app

Clone the repository:

git clone https://github.com/geosolutions-it/MapStore2.git

Install NodeJS and npm (npm it will come with NodeJS)

Checkout here what are the recommended versions of NodeJS and npm

Install docma to build the documentation

npm install -g docma

Start the demo locally:

npm cache clean (this is useful to prevent errors on Windows during install)

npm install

npm start

The demo runs at http://localhost:8081 afterwards.

Install latest Maven, if needed, from here (version 3.1.0 is required).

Build the deployable war:

./build.sh [version_identifier]

Where version_identifier is an optional identifier of the generated war that will be shown in the settings panel of the application.

Deploy the generated mapstore.war file (in web/target) to your favorite J2EE container (e.g. Tomcat).

Read more on the documentation site.

Professional Support

MapStore is being developed by GeoSolutions hence you can talk to us for professional support. Anyway the project is a real Open Source project hence you can contribute to it (see section below).

Communication

We currently have two mailing list:
one for users
one for developers.

The first one is for those who are willing to use MapStore and need help/directions, the latter is for those trying to extend/proposed fixes for MapStore.

Contributing

We welcome contributions in any form:

  • pull requests for new features
  • pull requests for bug fixes
  • pull requests for documentation
  • funding for any combination of the above

For more information check thispage.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].