我想在Google地图V2中绘制圆圈。我尝试过使用地面覆盖,但它没有显示我想要的效果。
答案 0 :(得分:-1)
您可以在Google地图广告中添加一个圈子:
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);
如果需要,您可以稍后使用此圆圈对象将其从地图中删除。