有没有人知道在尝试创建传单地图时可能导致以下错误的原因?它与自定义CRS有关。由于各种原因,我无法发布大部分代码,所以如果有人能指出我正确的方向,我将非常感激。
this._map.getPixelWorldBounds()为空
L.map(containerId, {
maxBounds: L.latLngBounds(L.latLng(-90, -180), L.latLng(90,180)),
maxZoom: 15,
minZoom: 1,
center: centerLatLng,
zoom: 2,
crs: getCrs(),
worldCopyJump: true,
zoomControl: false,
attributionControl: false
});
function getCrs() {
return new L.Proj.CRS('EPSG:4326', '+proj=longlat +datum=WGS84 +no_defs', {
origin: [-180, 90],
tileSize: 512,
resolutions: [...]
});
}
//Removed resolutions for brevity.
答案 0 :(得分:0)
我确实遇到了这个问题,使用Proj4Leaflet向Leaflet添加了EPSG:32661支持。
Uncaught TypeError: Cannot read property 'getSize' of null
at NewClass._onZoomEnd (leaflet-src.js?8af6:13235)
at NewClass.whenReady (leaflet-src.js?8af6:4450)
at NewClass.addHooks (leaflet-src.js?8af6:13157)
at NewClass.enable (leaflet-src.js?8af6:5722)
at NewClass.addHandler (leaflet-src.js?8af6:3736)
at NewClass.init (leaflet-src.js?8af6:385)
at NewClass.proto.callInitHooks (leaflet-src.js?8af6:357)
at NewClass.initialize (leaflet-src.js?8af6:3148)
at new NewClass (leaflet-src.js?8af6:301)
at Map.createLeafletElement (Map.js?fe6c:87)
我发现此问题是由于使用worldCopyJump
而引起的。通过删除它,错误消失了。