Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Openlayers | 10,070 | 1,563 | 770 | an hour ago | 2,267 | September 24, 2022 | 455 | bsd-2-clause | JavaScript | |
OpenLayers | ||||||||||
Angularjs Google Maps | 1,568 | 173 | 10 | 3 years ago | 66 | November 25, 2018 | 86 | mit | HTML | |
The Simplest AngularJS Google Maps V3 Directive | ||||||||||
Loklak_tweetheatmap | 1,118 | 4 years ago | 1 | mit | JavaScript | |||||
Heat map with tweets by search query using Loklak API and OpenLayers 3 | ||||||||||
Loklak_heatmapper | 1,103 | 7 years ago | JavaScript | |||||||
Recent Tweets Activity in a World Map | ||||||||||
Tegola | 1,098 | 2 | 1 | a day ago | 37 | June 02, 2022 | 159 | mit | Go | |
Tegola is a Mapbox Vector Tile server written in Go | ||||||||||
Ol Ext | 1,045 | 20 | 40 | a day ago | 61 | July 12, 2022 | 24 | other | JavaScript | |
Cool extensions for Openlayers (ol) - animated clusters, CSS popup, Font Awesome symbol renderer, charts for statistical map (pie/bar), layer switcher, wikipedia layer, animations, canvas filters. | ||||||||||
Sidebar V2 | 764 | 9 | 5 | 6 months ago | 2 | October 25, 2017 | 42 | mit | CSS | |
A responsive sidebar with tabs for Leaflet, OpenLayers, Google Maps, ... | ||||||||||
Iclient Javascript | 762 | 1 | 7 | 4 days ago | 20 | June 29, 2022 | 17 | apache-2.0 | 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. | ||||||||||
Vuelayers | 667 | 20 | 7 | 4 months ago | 168 | April 06, 2022 | 5 | mit | JavaScript | |
Web map Vue components with the power of OpenLayers | ||||||||||
Wicket | 514 | 17 | 15 | 2 years ago | 9 | September 13, 2021 | 29 | other | JavaScript | |
A modest library for moving between Well-Known Text (WKT) and various framework geometries |
Vector and raster maps with GL styles. Server-side rendering by MapLibre GL Native. Map tile server for MapLibre GL JS, Android, iOS, Leaflet, OpenLayers, GIS via WMTS, etc.
Download vector tiles from OpenMapTiles.
Make sure you have Node.js version 14.20.0 or above installed. Node 18 is recommended. (running node -v
it should output something like v18.x.x
). Running without docker requires Native dependencies to be installed first.
Install tileserver-gl
with server-side raster rendering of vector tiles with npm.
npm install -g tileserver-gl
Once installed, you can use it like the following examples.
using a mbtiles file
wget https://github.com/maptiler/tileserver-gl/releases/download/v1.3.0/zurich_switzerland.mbtiles
tileserver-gl --mbtiles zurich_switzerland.mbtiles
[in your browser, visit http://[server ip]:8080]
using a config.json + style + mbtiles file
wget https://github.com/maptiler/tileserver-gl/releases/download/v1.3.0/test_data.zip
unzip test_data.zip
tileserver-gl
[in your browser, visit http://[server ip]:8080]
Alternatively, you can use the tileserver-gl-light
npm package instead, which is pure javascript, does not have any native dependencies, and can run anywhere, but does not contain rasterization on the server side made with Maplibre GL Native.
An alternative to npm to start the packed software easier is to install Docker on your computer and then run from the tileserver-gl directory
Example using a mbtiles file
wget https://github.com/maptiler/tileserver-gl/releases/download/v1.3.0/zurich_switzerland.mbtiles
docker run --rm -it -v $(pwd):/data -p 8080:8080 maptiler/tileserver-gl --mbtiles zurich_switzerland.mbtiles
[in your browser, visit http://[server ip]:8080]
Example using a config.json + style + mbtiles file
wget https://github.com/maptiler/tileserver-gl/releases/download/v1.3.0/test_data.zip
unzip test_data.zip
docker run --rm -it -v $(pwd):/data -p 8080:8080 maptiler/tileserver-gl
[in your browser, visit http://[server ip]:8080]
Example using a different path
docker run --rm -it -v /your/local/config/path:/data -p 8080:8080 maptiler/tileserver-gl
replace '/your/local/config/path' with the path to your config file
Alternatively, you can use the maptiler/tileserver-gl-light
docker image instead, which is pure javascript, does not have any native dependencies, and can run anywhere, but does not contain rasterization on the server side made with Maplibre GL Native.
Test from command line
wget https://github.com/maptiler/tileserver-gl/releases/download/v1.3.0/test_data.zip
unzip -q test_data.zip -d test_data
xvfb-run --server-args="-screen 0 1024x768x24" npm test
Run from command line
xvfb-run --server-args="-screen 0 1024x768x24" node .
You can read the full documentation of this project at https://maptiler-tileserver.readthedocs.io/.
Discover MapTiler Server if you need a map server with easy setup and user-friendly interface.