MapView 中是否有要使用的 Polygon 类?
是否有第三方库或 Android 类(例如 google.maps.Polygon
)可在 MapView
(本机 Google 地图 API)中使用?我用谷歌搜索但找不到它。
Is there a third party lib or Android class like google.maps.Polygon
to be used in MapView
(Native Google Maps APIs)? I have googled but I couldn't find it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Maps API 中没有用于绘制多边形的类。请参阅此处的文档:
http://code.google.com /android/add-ons/google-apis/reference/index.html
下面是我用来绘制给定点列表的路线的一些代码。您可能可以修改它来执行您需要的操作。
The is no class for drawing polygons in the Maps API. See documentation here:
http://code.google.com/android/add-ons/google-apis/reference/index.html
Below is some code I used to draw a route given a list of points. You could probably modify it to do what you need.