-1

グーグルマップV2で円を描きたいです。グラウンド オーバーレイを使用してみましたが、希望どおりに表示されません。

4

1 に答える 1

-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);

必要に応じて、後でこの円オブジェクトを使用してマップから削除できます。

于 2013-08-14T18:49:46.070 に答える