问题:
https环境下,在leaflet地图上添加矢量图层时报错。
TypeError: Cannot read property '_layerAdd' of null
解决方法:
将leaflet源码中判断是否支持svg的判断语句
Ji = !(!document.createElementNS || !E("svg").createSVGRect)
替换成
Ji = typeof SVGRect !== "undefined"
参考资料:SVGRect
https环境下,在leaflet地图上添加矢量图层时报错。
TypeError: Cannot read property '_layerAdd' of null
将leaflet源码中判断是否支持svg的判断语句
Ji = !(!document.createElementNS || !E("svg").createSVGRect)
替换成
Ji = typeof SVGRect !== "undefined"
参考资料:SVGRect
本文标题:leaflet在https环境下报错
本文链接:https://www.haomeiwen.com/subject/qhensktx.html
网友评论