本文整理汇总了TypeScript中@bokehjs/models/tiles/mercator_tile_source.MercatorTileSource类的典型用法代码示例。如果您正苦于以下问题:TypeScript MercatorTileSource类的具体用法?TypeScript MercatorTileSource怎么用?TypeScript MercatorTileSource使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了MercatorTileSource类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it("should get tile bounds in lat/lng", () => {
const source = new MercatorTileSource()
const bounds = source.get_tile_geographic_bounds(511, 1202, 11)
expect(bounds[0]).to.be.closeTo(-90.17578125, tol)
expect(bounds[1]).to.be.closeTo(29.840643899834436, tol)
expect(bounds[2]).to.be.closeTo(-90, tol)
expect(bounds[3]).to.be.closeTo(29.99300228455108, tol)
})