如何在android中的地图上显示街景?
我们如何编写代码来在android中显示如下图所示的街景? 如果我应用
mapView.setStreetView(true);
它,它会显示为正常视图。但我需要显示如下图所示。
How can we write code to show the Streetview like the below shown image in android?
If i'm applying
mapView.setStreetView(true);
it's showing as normal view. But i need to show like the below image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
街景已弃用。
来自文档:
@已弃用
公共无效setStreetView(布尔值)
已弃用。不再支持街景视图可用性突出显示。此方法作为无操作运行。
检查通过 Google Aps 下载的文档。
希望这有帮助
悬崖
The streetview is Deprecated.
From the Documentation:
@Deprecated
public void setStreetView(boolean on)
Deprecated. Street view availability highlighting is no longer supported. This method operates as a no-op.
Check the documentation that was downloaded with the Google Aps.
Hope this helps
Cliff