我在地图上有一个圆圈需要更新,这是一种方法:
circleopts.radius=100*distance;
// delete old circle overlay
circle.setMap(null);
// create new circle overlay
circle = new google.maps.Circle(circleopts);
// display new circle overlay
circle.setMap(map);
出于某种原因,我觉得这不是很优雅。这是最好的方法吗?