1

我正在尝试为谷歌地图制作自定义叠加层。我用这个这个例子。而且我对覆盖宽度定义有疑问。

var sw = overlayProjection.fromLatLngToDivPixel(this.bounds_.getSouthWest());
var ne = overlayProjection.fromLatLngToDivPixel(this.bounds_.getNorthEast());

// Resize the image's div to fit the indicated dimensions.
var div = this.div_;
div.style.left = sw.x + 'px';
div.style.top = ne.y + 'px';
div.style.width = (ne.x - sw.x) + 'px';
div.style.height = (sw.y - ne.y) + 'px';

此代码返回小于一个像素的宽度,用于使用此 latlonbox 进行叠加:

<LatLonBox>
<north>90.0</north>
<south>-90.0</south>
<east>180.0</east>
<west>-180.0</west>
</LatLonBox>

有没有人遇到过这个问题?也许有人知道解决方案。如果有任何帮助,我将不胜感激。

4

1 回答 1

1

当边界与本初子午线相交时,似乎会发生这种情况。

试试这个来计算宽度:

         ((ne.x - sw.x)
          +
          (((ne.x - sw.x)<0
            ||
          this.bounds_.getNorthEast().lng()
          -
          this.bounds_.getSouthWest().lng()>=360)
            ? overlayProjection.getWorldWidth()
            : 0))

演示:http: //jsfiddle.net/doktormolle/4vj37ecy/

于 2014-11-14T09:15:50.307 回答