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

时间:2018-06-05 14:11:46

标签: google-maps kml

有没有办法创建使用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时,图像不会重复(见下图)。由于我的图像是一个完整的全局图像,我怎样才能使它在两边都无缝?

https://i.imgur.com/avvMOk9.png

1 个答案:

答案 0 :(得分:0)

这个问题的答案是,你不能。 Google maps API无法实现。答案是将我自己的地图服务器与Leaflet javascript结合使用,以寻求解决(很长)解决方案的人。