Hide a circle along with the binded marker

南楼画角 提交于 2019-12-25 16:57:31

问题


I'm working with Google Maps v3 and I use the MarkerManager to hide the markers on a certain zoom level. I bind circle objects to these markers. Anyway, they aren't hided when the markers are. How can I bind the circles to hide with the markers?

The binding:

var marker = new google.maps.Marker({
  position: new google.maps.LatLng(lat,lng),
});
var circle = new google.maps.Circle({
  map: map, 
  radius: 50,
});
circle.bindTo('center', marker, 'position');
Array.push(marker);

回答1:


Did you solved your problem? If not add this:

circle.bindTo('map', marker);


来源:https://stackoverflow.com/questions/3923283/hide-a-circle-along-with-the-binded-marker

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!