Google 地图:滚动时沿 x 轴重复 GroundOverlay 图像

Google Maps: Repeat GroundOverlay images along x-axis when scrolling

有没有一种方法可以创建使用 GroundOverlay 图像的 .kml 图层的无缝滚动?目前我有一个具有这些属性的 kml 文件:

<name>Real-Time</name>
<Icon>
    <href>http://tropicalwx.us/kml/output.png</href>
    <viewBoundScale>0.75</viewBoundScale>
</Icon>
<LatLonBox>
    <north>89.99</north>
    <south>-89.99</south>
    <east>179.99</east>
    <west>-179.99</west>
</LatLonBox>

但是,当我向东移动 180 度或向西移动 -180 度时,图像不会重复(见下图)。由于我的图像是一个完整的全局stiched图像,我怎样才能使它的两面无缝?

这个问题的答案是,你不能。 Google 地图 API 是不可能的。答案是使用我自己的带有 Leaflet 的地图服务器 javascript 对于那些想知道(很长的)解决方案的人。