如何在 ngx-openlayers 中加载自定义 .pbf 文件

How to load a custom .pbf file in ngx-openlayers

我能够使用 ngx-openlayers 和以下代码加载地图

   <aol-map [width]="'100%'" [height]="'100%'">
      <aol-view [zoom]="zoom">
        <aol-coordinate [x]="5" [y]="45" [srid]="'EPSG:4326'"></aol-coordinate>
      </aol-view>
      <aol-layer-tile [opacity]="opacity">
        <aol-source-osm></aol-source-osm>
      </aol-layer-tile>
      <aol-layer-vector [opacity]="opacity">
        <aol-source-vector>
          <aol-feature>
            <aol-geometry-point>
              <aol-coordinate [x]="5" [y]="45" [srid]="'EPSG:4326'"></aol-coordinate>
            </aol-geometry-point>
            <aol-style>
              <aol-style-circle [radius]="10">
                <aol-style-stroke [color]="'black'" [width]="width"></aol-style-stroke>
                <aol-style-fill [color]="'green'"></aol-style-fill>
              </aol-style-circle>
            </aol-style>
          </aol-feature>
          <aol-feature>
            <aol-geometry-point>
              <aol-coordinate [x]="5.1" [y]="45.1" [srid]="'EPSG:4326'"></aol-coordinate>
            </aol-geometry-point>
            <aol-style>
              <aol-style-icon [src]="'assets/marker.png'" [anchor]="[0.5, 1]" [anchorXUnits]="'fraction'" [anchorYUnits]="'fraction'" [scale]="0.1"
                [anchorOrigin]="'top-left'">
              </aol-style-icon>
            </aol-style>
          </aol-feature>
        </aol-source-vector>
      </aol-layer-vector>
    </aol-map> 

我的问题是我想加载我在 http://localhost:8090/tileserver.php#trails/ol3 URL 上使用 MapTile 服务器在本地计算机上提供的自定义地图位置。 现在来自上述服务器的 XYZ URL 是 (http://localhost:8090/tileserver.php?/index.json?/trails/{z}/{x}/{y}.pbf)

如何使用 ngx-openlayers 包加载此地图

我试过用这个但是没用

<aol-map [width]="'500px'" [height]="'300px'">
        <aol-interaction-default></aol-interaction-default>
        <aol-control-defaults></aol-control-defaults>
        <aol-control-fullscreen></aol-control-fullscreen>
        <aol-layer-tile>
        <aol-source-osm></aol-source-osm>
        <aol-source-xyz [url]="'http://localhost:8090/tileserver.php?/index.json?/trails/{z}/{x}/{y}.pbf'">
        </aol-source-xyz>
        </aol-layer-tile>

        <aol-view [zoom]="12">
        <aol-coordinate [x]="6.47" [y]="53.44" [srid]="'EPSG:4326'"></aol-coordinate>
        </aol-view>
        </aol-map>

所以是的,我即将回答我自己的问题,因为它可能会在将来帮助某人。

基础知识

OSM (OpenStreetMap) 中的地图有两大类

1.Raster 格式:这是地图的光栅图像(PNG、JPEG、SVG ...)图块。这种格式可以被压缩并把它变成.mbtiles 格式。 您可以使用 mbuilt 等工具将内容提取到 tms、wsm 或 XYZ 文件夹结构中。这是一种简单快捷的选择。

  1. 矢量格式:这是一种矢量文件格式,它可以包含多种文件类型,例如 .pbf。它也可以被压缩成一个 .mbtiles 文件。我们需要一个图块服务器来渲染矢量文件的内容。 Tile server GL 是服务于 vector/raster 地图文件 (mbtiles)
  2. 的切片服务器

解决离线托管问题后,我为 angular 使用了默认的 leaflet.js 包,一切正常,没有问题。

我使用 OpenMaptiles 地图文件通过 tileserver-gl

托管它们