宣传单自定义网址\自定义图块

时间:2017-05-06 23:26:23

标签: javascript dictionary leaflet tiles

我正在使用传单制作自定义地图。到目前为止一切工作正常,但遗憾的是我用来将图像分割成图块的程序不会以0开始计数,而是使用1,所以我的图块以“1_1.jpg”开头,所以我的整个地图都移动了一个图块在y轴和x轴上。重命名瓷砖不是一个选项,因为很多,所以我正在寻找改变

中的{x}和{y}值的可能性
L.tileLayer('images/map/{z}/C{x}_R{y}.jpg',

类似于x=x+1y=y+1,这将是我的逻辑。 我已经读到getTileUrl可以实现,但我不明白怎么做。我仍然是Javascript的新手,这个问题开始让我发疯!

如果有人可以提供帮助,我会非常感激。

平铺名称类似于“Cx_Ry.jpg”(例如第一张图片“C1_R1.jpg”)以下是代码。

var w = 16384, h = 16384; //Größe innerhalb Box

var map = L.map('image-map', {
        minZoom: 0,
        maxZoom: 5,
        crs: L.CRS.Simple,
        attributionControl: false,
}).setView([0, 0], 0);

var southWest = map.unproject([0, h], map.getMaxZoom());
var northEast = map.unproject([w, 0], map.getMaxZoom());
var bounds = new L.LatLngBounds(southWest, northEast);

map.setMaxBounds(bounds);

L.tileLayer('images/map/{z}/C{x}_R{y}.jpg', {
    minZoom: 0,
    maxZoom: 5,
    tms: false,
    continuousWorld: 'false',
    noWrap: false,
    defaultRadius:1,
}).addTo(map);

1 个答案:

答案 0 :(得分:2)

您可以扩展Leaflet的TileLayer课程,以提供您自己的getTileUrl方法:http://leafletjs.com/examples/extending/extending-2-layers.html

在这种情况下,它可能看起来像这样:

L.TileLayer.MyCustomLayer = L.TileLayer.extend({
    getTileUrl: function(coords) {
        // increment our x/y coords by 1 so they match our tile naming scheme
        coords.x = coords.x + 1;
        coords.y = coords.y + 1;

        // pass the new coords on through the original getTileUrl
        // see http://leafletjs.com/examples/extending/extending-1-classes.html 
        // for calling parent methods
        return L.TileLayer.prototype.getTileUrl.call(this, coords);
    }
});

// static factory as recommended by http://leafletjs.com/reference-1.0.3.html#class
L.tileLayer.myCustomLayer = function(templateUrl, options) {
    return new L.TileLayer.MyCustomLayer(templateUrl, options);
}

// create the layer and add it to the map
L.tileLayer.myCustomLayer('images/map/{z}/C{x}_R{y}.jpg', {
    minZoom: 0,
    maxZoom: 5,
    tms: false,
    continuousWorld: 'false',
    noWrap: false,
    defaultRadius:1,
}).addTo(map);

代码未经测试,但应该让您朝着正确的方向前进。