相当于 OpenStreeMaps (OSMDroid) 的 com.google.android.maps.ItemizedOverlay.populate()
知道在 OpenSteeMapViewItemizedOverlay
情况下 com.google.android.maps.ItemizedOverlay.populate()
方法的等效项是什么吗?
Any idea what's the equivalent of com.google.android.maps.ItemizedOverlay.populate()
method in case of OpenSteeMapViewItemizedOverlay
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好像没有一个。您传递到构造函数中的数据已经是 OverlayItem 对象的列表。在标准 ItemizedOverlay 中,您必须调用 populate(),以便叠加层迭代数据列表并调用 createItem() 为每条数据创建 OverlayItems,但在 OpenstreetMapViewItemizedOverlay 中您已经创建了 OverlayItems,因此不需要那一步。但我看到的缺点是,一旦创建了叠加层,就无法更改它。
There doesn't seem to be one. The data you pass into the constructor is already a list of OverlayItem objects. In the standard ItemizedOverlay, you must call populate(), so that the overlay iterates over the list of data and calls createItem() to create OverlayItems for each piece of data but in OpenstreetMapViewItemizedOverlay you have already create the OverlayItems so you don't need that step. The drawback I see though is that you cannot change the overlay once you create it though.