如何在谷歌地图上绘制圆形或矩形

时间:2015-02-19 11:59:09

标签: google-maps iframe maps

我想在Google地图上的某个地方搜索时绘制圆形或矩形。如何使用iframe执行此操作?是否有任何程序或工具或其他内容?

1 个答案:

答案 0 :(得分:0)

试试这个......

// Instantiates a new CircleOptions object and defines the center and radius
CircleOptions circleOptions = new CircleOptions()
.center(new LatLng(37.4, -122.1))
.radius(1000)); // In meters

// Get back the mutable Circle
Circle circle = myMap.addCircle(circleOptions);