@opengis/gis 0.2.78 → 0.2.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +1 -1
- package/dist/index.js +5548 -5208
- package/dist/index.umd.cjs +67 -56
- package/package.json +1 -1
- package/server/routes/map/controllers/layerList.js +1 -1
- package/server/routes/mapnik/controllers/rasterInfo.js +1 -1
package/package.json
CHANGED
|
@@ -41,7 +41,7 @@ export default async function layerList({
|
|
|
41
41
|
from gis.rasters s where is_active and ${!user.uid ? 'is_public' : '1=1'}
|
|
42
42
|
union all
|
|
43
43
|
select cartocss_id as id, name, null as category, style, geom::box2d as bbox, st_asgeojson(geom)::json as geom,
|
|
44
|
-
coalesce('/api/gis-rtile/'||cartocss_id||'/{z}/{x}/{y}.png
|
|
44
|
+
coalesce('/api/gis-rtile/'||cartocss_id||'/{z}/{x}/{y}.png',null) as url, 'cartocss' as service, group_id,
|
|
45
45
|
null as popup, null as card, null as filters, source_path
|
|
46
46
|
from gis.cartocss where enabled and ${!user.uid ? 'is_public' : '1=1'}
|
|
47
47
|
`;
|