本文整理汇总了TypeScript中@bokehjs/models/tiles/tms_tile_source.TMSTileSource.get_image_url方法的典型用法代码示例。如果您正苦于以下问题:TypeScript TMSTileSource.get_image_url方法的具体用法?TypeScript TMSTileSource.get_image_url怎么用?TypeScript TMSTileSource.get_image_url使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@bokehjs/models/tiles/tms_tile_source.TMSTileSource
的用法示例。
在下文中一共展示了TMSTileSource.get_image_url方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: TMSTileSource
it.skip("should get tile urls by geographic extent", () => {
const tile_options = {
url: 'http://c.tile.openstreetmap.org/{Z}/{X}/{Y}.png',
}
const source = new TMSTileSource(tile_options)
const extent: Extent = [-90.283741, 29.890626, -89.912952, 30.057766]
const level = 11
const expected_tiles = [
'http://c.tile.openstreetmap.org/11/510/1201.png',
'http://c.tile.openstreetmap.org/11/511/1201.png',
'http://c.tile.openstreetmap.org/11/512/1201.png',
'http://c.tile.openstreetmap.org/11/510/1202.png',
'http://c.tile.openstreetmap.org/11/511/1202.png',
'http://c.tile.openstreetmap.org/11/512/1202.png',
]
const tiles = source.get_tiles_by_extent(extent, level)
for (const [x, y, z] of tiles) {
const url = source.get_image_url(x, y, z)
expect(expected_tiles).to.contain(url)
}
})