我想在谷歌地图 V2 中画圆。我试过使用地面覆盖,但它没有按我的意愿显示。
问问题
877 次
1 回答
-1
您可以在谷歌地图广告中添加一个圆圈,如下所示:
GoogleMap gMap = ...; //get ref to gMap
CircleOptions circleOptions = new CircleOptions();
circleOptions.center(latLang point);
circleOptions.fillColor(/* add fill color here */);
circleOptions.strokeColor(/* add stoke color here*/);
circleOptions.strokeWidth(/* stroke width here*/);
Circle circle = this.getMap().addCircle(circleOptions);
如果需要,您可以稍后使用此圆形对象将其从地图中删除。
于 2013-08-14T18:49:46.070 回答