You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 27, 2020. It is now read-only.
Should be remove mvt_provider, and have the provider register it's self as an mvt type of provider.
i.e.
[[mvtproviders]]
name = "test_postgis"# provider name is referenced from map layers (required)type = "postgis_mvt"# the type of data provider must be "postgis" for this data provider (required)host = "localhost"# PostGIS database host (required)port = 5432# PostGIS database port (required)database = "tegola"# PostGIS database name (required)user = "tegola"# PostGIS database user (required)password = ""# PostGIS database password (required)
There are some things to note about this approach.
The provider needs to that it's an MVT provider (this could be done by look to see if it supports the mvt_provider interface)
Documentation can be confusing as mvt providers can not conflate with other providers.
The text was updated successfully, but these errors were encountered:
I think it would be ideal if we could just use the type property and not need to introduce a new top-level provider concept. It would also get rid of the mvt_ prefix that needs to be added to map layers.
Regarding conflation, we can't conflate at this time, but we have talked about ways to make conflating possible so it's not entirely a blocker long term.
Should be remove mvt_provider, and have the provider register it's self as an mvt type of provider.
i.e.
There are some things to note about this approach.
The provider needs to that it's an MVT provider (this could be done by look to see if it supports the mvt_provider interface)
Documentation can be confusing as mvt providers can not conflate with other providers.
The text was updated successfully, but these errors were encountered: