Google于2月26日发布Circle
作为叠加类型:
但是如何更新到Google Map V2的新版本?什么时候可以在Android SDK Manager中使用?我在“Google Play服务”(修订版5)中有以前的Google Map V2库,其中不包括Circle
类
答案 0 :(得分:36)
更新 Google MAP V2:
打开Android SDK Manager - >转到额外内容 - >检查 Google Play服务的更新。如果它未显示可用更新,则转到 Packages-> Reload 。将Google Play服务更新为修订版5 。
之后,从Eclipse Workspace中删除旧的Google Play服务库项目。再次导入它。在当前项目中添加此库项目。现在,您将在 com.google.android.gms.maps.model 包中找到 Circle 类。并且您可以使用它在地图中添加圆圈。
添加圈子:
mMap.addCircle(new CircleOptions()
.center(new LatLng(location.getLatitude(), location.getLongitude()))
.radius(100)
.strokeColor(Color.RED)
.fillColor(Color.BLUE));
有关您的信息,这是Release note for changes of February 2013。
编辑:这是Release notes for June 2016.您现在可以点击圈子了,如果你想用圈子做一些动作,这可能会有所帮助。