全站通知:

Maptile

阅读

    

2021-12-05更新

    

最新编辑:不会飞的栗子球

阅读:

  

更新日期:2021-12-05

  

最新编辑:不会飞的栗子球

来自艾尔登法环WIKI_BWIKI_哔哩哔哩
跳到导航 跳到搜索
页面贡献者 :
不会飞的栗子球

如何生成地图瓦片

https://github.com/jiazheng/BaiduMapTileCutter 百度地图切图工具。图片数量会很多,4级+5级就有200+图片。

获取瓦片图片地址和瓦片编号的映射关系

进入页面 https://wiki.biligame.com/eldenring/Maptile/4, 上传图片,将所有插入为图库,在控制台执行下列代码

Array.from(document.getElementsByClassName('thumb')).map(e => e.children[0].children[0]).map(e => {return {xy:e.href.split("Tile-")[1].substring(14).split(".")[0], url: e.children[0].src.split("/120px")[0].replace("/thumb", "")}})

对执行结果右键,选择"Copy Object", Maptile/4 页面复制结果如下所示

[
    {
        "xy": "-5_-1_-1",
        "url": "https://patchwiki.biligame.com/images/eldenring/e/e5/8ndb8eyy5qk8ll05senstesva4nkdsy.png"
    },
    {
        "xy": "-5_-1_-2",
        "url": "https://patchwiki.biligame.com/images/eldenring/1/10/64aroqdshwyzn59khjbryqpza9u21ys.png"
    },
    {
        "xy": "-5_-1_-3",
        "url": "https://patchwiki.biligame.com/images/eldenring/1/1f/daxssogimgvwxpl1d6unx43enw016co.png"
    }
    ... // 数量太多,省略
]