我有一个天气图片,我想作为谷歌地图android api的覆盖。我希望获得与在kml文件中使用groundoverlay相同的结果,例如

<GroundOverlay>
  <name>myimage</name>
  <Icon>
    <href>myimage.png</href>
    <viewBoundScale>0.75</viewBoundScale>
  </Icon>
  <LatLonBox>
    <north>75.6088</north>
    <south>5.0121</south>
    <east>182.2805</east>
    <west>120.6795</west>
  </LatLonBox>
</GroundOverlay>

以上将确保我的图像的4个角固定在列出的4个纬度/经度点上,而不考虑滚动、缩放等操作。
有没有办法使用android提供的google api/maps来实现这一点?

最佳答案

你可以用覆盖层来完成,但是你必须用覆盖层的绘制方法来完成所有你自己的绘制。不过,这可能是一个很好的扩展。

07-27 13:55