Skip to content
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

Vector Tile Support #5376

Merged
merged 37 commits into from Mar 27, 2018
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
50482bf
scafolding for vector tile support
tbonfort Sep 10, 2015
0de0230
plug vector tile driver into template output
tbonfort Sep 11, 2015
1123b9e
WIP implementing vector tile support
tbonfort Sep 12, 2015
59f45f6
correct protobuf package name
tbonfort Sep 12, 2015
0ed57ec
implement geometry encoding, remove mvt from default formats
tbonfort Sep 13, 2015
e837275
fix allocation error
tbonfort Sep 13, 2015
50c3a44
setup correct map scale and units for WFS queries if using vector til…
tbonfort Sep 14, 2015
ead1757
fix y orientation, align to query rect
tbonfort Sep 17, 2015
2597714
restore default vector tile extent to 4096
tbonfort Sep 17, 2015
ab54481
segfault on NULL item type
tbonfort Sep 17, 2015
032e5d3
add a buffer around vector tiles, configure the vector tile extent
tbonfort Sep 18, 2015
91e54c9
Got things working against a couple of the Leaflet plugins. Using ver…
sdlime Jan 24, 2017
e2612b9
Ignore malformed parts created by clipping process.
sdlime Jan 26, 2017
010dc2a
Working without a query now...
sdlime Feb 2, 2017
a62477e
Compute n_geometry early and skip shapes where n_geometry=0.
sdlime Feb 7, 2017
d3baaa1
Fixed one lingering reference to mvt_feature being used before initia…
sdlime Feb 8, 2017
6773281
Moved allocation of mvt features to be dynamic. Changed name of main …
sdlime Feb 8, 2017
d542d21
Added initial hooks into WMS. Removed unused format parameter from ms…
sdlime Feb 9, 2017
3d62e1c
Added support to properly set direction on polygon rings so GL render…
sdlime Feb 9, 2017
47c55e0
Make sure all the public function names and arguments are aligned.
sdlime Feb 10, 2017
c4da16b
Enable MVT default format for WMS (retired reference to GD). Removed …
sdlime Feb 10, 2017
d4468c2
Update mapmvt.c
fminuti May 17, 2017
05b6d95
Merge pull request #1 from fminuti/mvtReverseRingDirection-polygon
sdlime May 27, 2017
d374fa2
Bring into line with #5277...
sdlime Jul 31, 2017
13813cb
Update MVT mime-type to comply with version 2.1 of the vector tile spec.
sdlime Jul 31, 2017
2ddcd98
Commented out the WFS code that adjusts the supplied extent as there …
sdlime Aug 23, 2017
e948ee5
Synced with mapserver:master.
sdlime Oct 12, 2017
9ac714b
Fixed some conflicts against master.
sdlime Jan 28, 2018
a1b83fa
Merge remote-tracking branch 'origin/master' into vector-tiles
sdlime Jan 28, 2018
93c3642
Updated a few test results to account for vector tiles. Let's see if …
sdlime Feb 3, 2018
470b6fb
Fixed format list to include MVT...
sdlime Feb 8, 2018
8b7b89d
Fixed format list to include MVT... (missed a couple)
sdlime Feb 8, 2018
86d7edb
Updated vagrant setup to include protobuf packages.
sdlime Mar 4, 2018
03f0df7
Merge remote-tracking branch 'origin/master' into vector-tiles
sdlime Mar 4, 2018
a7ecb21
Found the issue that was causing the 1.3 client tests to fail...
sdlime Mar 21, 2018
5d5b125
Brought in line with mapserver/master again.
sdlime Mar 27, 2018
9d3ed9e
Damn, missed one test result.
sdlime Mar 27, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -55,7 +55,7 @@ before_install:
- sudo apt-get remove postgis libpq5 libpq-dev postgresql-9.1-postgis postgresql-9.2-postgis postgresql-9.3-postgis postgresql-9.1 postgresql-9.2 postgresql-9.3 libgdal1
- sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable
- sudo apt-get update
- sudo apt-get install bison flex python-lxml libfribidi-dev swig cmake librsvg2-dev colordiff postgis postgresql-9.1 postgresql-9.1-postgis-2.1 postgresql-9.1-postgis-2.1-scripts libpq-dev libpng12-dev libjpeg-dev libgif-dev libgeos-dev libgd2-xpm-dev libfreetype6-dev libfcgi-dev libcurl4-gnutls-dev libcairo2-dev libgdal1-dev libproj-dev libxml2-dev python-dev php5-dev libexempi-dev lcov lftp
- sudo apt-get install protobuf-c-compiler libprotobuf-c0-dev bison flex python-lxml libfribidi-dev swig cmake librsvg2-dev colordiff postgis postgresql-9.1 postgresql-9.1-postgis-2.1 postgresql-9.1-postgis-2.1-scripts libpq-dev libpng12-dev libjpeg-dev libgif-dev libgeos-dev libgd2-xpm-dev libfreetype6-dev libfcgi-dev libcurl4-gnutls-dev libcairo2-dev libgdal1-dev libproj-dev libxml2-dev python-dev php5-dev libexempi-dev lcov lftp
- sudo pip install git+git://github.com/tbonfort/cpp-coveralls.git@extensions
- ./install-msautotest.sh
- cd msautotest
Expand Down