2

我正在构建一个 Pyramid 应用程序,该应用程序需要将地图图块提供给 OpenLayers 网络地图。

TileStache 是一个 WMS 切片服务器,它为我需要的切片提供服务,我想在我的 Pyramid 应用程序中以视图的形式访问它。

就其本身而言,访问 TileStache urlwww.exampletilestacheurl.com/LAYERNAME/0/0/0.png效果很好 - 它可以正确返回图块。

在 Pyramid 中,我想使用pyramid.wsgi.wsgiapp. 我的目标是访问www.mypyramidapp.com/tilestache/LAYERNAME/0/0/0.png就像上面的 TileStache url 示例一样工作。

我将 TileStache 应用程序包装成一个视图:

from pyramid.wsgi import wsgiapp

@wsgiapp
def tileserver(environ, start_response):
    # Enable TileStache tile server
    import TileStache
    tile_app = TileStache.WSGITileServer('tilestache/tilestache.cfg', autoreload=False)
    return [tile_app]

并为视图分配了一条路线myapp.__init__.main

from tilestache import tileserver
config.add_view(tileserver, name='tilestache')
config.add_route('tilestache', '/tilestache')

但是当我访问任何以 开头的 url 时www.mypyramidapp.com/tilestache/,它只会返回IndexError: list index out of range.Is有人熟悉 wsgiapp 的工作原理吗?

4

1 回答 1

2

如果 tile_app 是一个 wsgi 应用程序,你需要像这样返回调用它的结果......

from pyramid.wsgi import wsgiapp

# Enable TileStache tile server
import TileStache
tile_app = TileStache.WSGITileServer('tilestache/tilestache.cfg', autoreload=False)

@wsgiapp
def tileserver(environ, start_response):

    return tile_app(environ, start_response)

注意:我将应用程序创建移至模块级别,以便在导入时创建它,而不是在每次处理请求时创建。这可能不是您正在寻找的行为,但大多数时候它是。

于 2013-11-10T13:38:55.383 回答