TFS map creation #2709
-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
If you want to stream feature tiles I recommend instead you use MVT format. You can do this with the GDAL
See for more: https://gdal.org/en/stable/drivers/vector/mvt.html Then in osgEarth you can use an <xyzfeatures name="my-data">
<url> output_folder/{z}/{x}/{y}.pbf </url>
<min_level>0</min_level>
<max_level>10</max_level>
<format>pbf</format>
<profile>spherical-mercator</profile>
</xyzfeatures> Hope this helps. (PS. If you really want to use TFS, the |
Beta Was this translation helpful? Give feedback.
-
Perfect... |
Beta Was this translation helpful? Give feedback.
If you want to stream feature tiles I recommend instead you use MVT format.
You can do this with the GDAL
ogr2ogr
tool, for example:See for more: https://gdal.org/en/stable/drivers/vector/mvt.html
Then in osgEarth you can use an
XYZFeatureSource
to load it:Hope this helps.
(PS. If you really want to use TFS, the
osgearth_tfs
tool is still around.)