• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript tms_tile_source.TMSTileSource类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中@bokehjs/models/tiles/tms_tile_source.TMSTileSource的典型用法代码示例。如果您正苦于以下问题:TypeScript TMSTileSource类的具体用法?TypeScript TMSTileSource怎么用?TypeScript TMSTileSource使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了TMSTileSource类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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)
      }
    })
开发者ID:digitalsatori,项目名称:Bokeh,代码行数:25,代码来源:tile_renderer.ts


示例2: it

 it("should account of x_origin_offset and y_origin_offset", () => {
   const tile_options = {
     x_origin_offset: 0,
     y_origin_offset: 0,
   }
   const offset_source = new TMSTileSource(tile_options)
   const bounds = offset_source.get_tile_meter_bounds(0, 0, 16)
   expect(bounds).to.include(0)
 })
开发者ID:digitalsatori,项目名称:Bokeh,代码行数:9,代码来源:tile_renderer.ts


示例3: describe

  describe("tms tile source", () => {
    const url = 'http://c.tiles.mapbox.com/v3/examples.map-szwdot65/{Z}/{X}/{Y}.png'
    const source = new TMSTileSource({url})

    it("should get tiles for extent correctly", () => {
      T.expect_mercator_tile_counts(source)
    })

    it("should successfully set x_origin_offset and y_origin_offset", () => {
      const tile_options = {
        x_origin_offset: 0,
        y_origin_offset: 0,
      }
      const offset_source = new TMSTileSource(tile_options)
      expect(offset_source.x_origin_offset).to.be.equal(0)
      expect(offset_source.y_origin_offset).to.be.equal(0)
    })

    it("should account of x_origin_offset and y_origin_offset", () => {
      const tile_options = {
        x_origin_offset: 0,
        y_origin_offset: 0,
      }
      const offset_source = new TMSTileSource(tile_options)
      const bounds = offset_source.get_tile_meter_bounds(0, 0, 16)
      expect(bounds).to.include(0)
    })

    it("should calculate resolution", () => {
      expect(source.get_resolution(1)).to.be.closeTo(78271.517, tol)
      expect(source.get_resolution(12)).to.be.closeTo(38.2185, tol)
    })
  })
开发者ID:digitalsatori,项目名称:Bokeh,代码行数:33,代码来源:tile_renderer.ts



注:本文中的@bokehjs/models/tiles/tms_tile_source.TMSTileSource类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript range_tool.flip_side函数代码示例发布时间:2022-05-28
下一篇:
TypeScript mercator_tile_source.MercatorTileSource类代码示例发布时间:2022-05-28
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap