6

我在 Binding.scala 上使用带有 scalajs-leaflet 外观的 Leaflet,并且地图初始化/显示不正确。

为了重现这个问题,我准备了一个lihaoyi/workbench类似于 scalajs-leaflet 的页面。

首先,从https://github.com/mcku/scalajs-leaflet下载分叉的 scalajs-leaflet

sbtscalajs-leaflet目录中运行。输入~ example/fastOptJSsbt。现在,一个 Web 服务器在 12345 端口启动。

在浏览器中打开 http://localhost:12345/example/target/scala-2.12/classes/leaflet2binding-dev.html

问题是地图容器出现但内容(瓷砖等)不正确。在窗口上进行小的调整大小后,地图变得很好,这会触发_onResize传单的处理程序。

容器在Leaflet2Binding.scala文件中,并且在初始化之前已经指定了它的大小:

val mapElement = <div id="mapid" style="width: 1000px; height: 600px;
                       position: relative; outline: currentcolor none medium;"
                    class="leaflet-container leaflet-touch leaflet-fade-anim 
                    leaflet-grab leaflet-touch-drag leaflet-touch-zoom"
                    data:tabindex="0"></div>.asInstanceOf[HTMLElement]

lmap.invalidateSize(true)在返回元素 https://github.com/mcku/scalajs-leaflet/blob/83b770bc76de450567ababf6c7d2af0700dd58c9/example/src/main/scala/example/Leaflet2Binding.scala#L39之前,可以在以下行中插入一行,但是在这种情况下没有帮助。即这里:

@dom def renderMap = {
  val mapElement = ... (same element as above)

  .. some other initializations ..

  lmap.invalidateSize(true) // true means, use animation

  println("mapElement._leaflet_id " +mapElement.asInstanceOf[js.Dynamic]._leaflet_id) // prints non-null value, makes me think the container is initialized

  mapElement
}

有任何想法吗?这是 binding.scala 特有的,但也可能是传单问题。 调整大小前的地图 调整大小后

编辑可能的解决方法看起来,地图元素的clientWidth属性在此过程中不可用。这是可以理解的,因为文档还没有“准备好”。但是,cssstyle.width是可用的,并且可以在 px 中定义。在这种情况下,可以修补传单以在计算期间考虑 css 样式宽度。

如果样式宽度以 px 为单位指定,则它可以工作。

diff --git a/src/map/Map.js b/src/map/Map.js
index b94dd443..6544d7b7 100644
--- a/src/map/Map.js
+++ b/src/map/Map.js
@@ -903,8 +903,9 @@ export var Map = Evented.extend({
        getSize: function () {
                if (!this._size || this._sizeChanged) {
                    this._size = new Point(
-                               this._container.clientWidth || 0,
-                               this._container.clientHeight || 0);
+
+                               this._container.clientWidth || parseInt(this._container.style.width.replace("px",""),10) || 0,^M
+                               this._container.clientHeight || parseInt(this._container.style.height.replace("px",""),10) || 0);;^M

                        this._sizeChanged = false;
                }
4

1 回答 1

7

Maybelmap.invalidateSize(true)被调用得太早(DOM 没有准备好或重新绘制)。

确保不会发生这种情况。为了防止这种情况,我将这段代码包装起来:

setTimeout(function () {
   mapid.invalidateSize(true);
}, 100);

这必须在每次 DOM 重绘后完成。

于 2018-12-21T10:29:16.297 回答