我正在使用此示例中的代码:https ://google-developers.appspot.com/maps/articles/mvcfun/step6
我想在用户进行 dblclick 事件时更改圆圈的颜色,但它不起作用,我不知道如何制作。我也想在双击后隐藏/禁用调整大小标记。
这是我的代码:http: //jsfiddle.net/e4s8P/5/
google.maps.event.addListener(marker, 'dblclick', function() {
marker.setDraggable(false);
marker.setVisible(false);
//change color of the circle here and hide marker of radius
});
感谢您的帮助,祝您有愉快的一天!