0

我重做了这段代码,所以它更短,但基本上我试图用左键单击添加一个圆圈并用右键单击将其删除。radius.setMap(null) 仅在它不在函数内时才有效。

    <!DOCTYPE html>
    <html>
      <head>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
    <style type="text/css">
      html { height: 100%% }
      body { height: 100%%; margin: 0; padding: 0 }
      #map_canvas { height: 100%% }
    </style>
    <script type="text/javascript"
      src="http://maps.googleapis.com/maps/api/js?key=mykey&sensor=false">
    </script>
    <script type="text/javascript">
      var centerlatlng = new google.maps.LatLng(-27.467726,153.026633);
      function initialize() {
        var mapOptions = {
          center: centerlatlng,
          zoom: 16,
          mapTypeId: google.maps.MapTypeId.ROADMAP
        };
        var map = new google.maps.Map(document.getElementById("map_canvas"),
            mapOptions);

        var marker = new google.maps.Marker({
                                            position: centerlatlng,
                                            map: map,
                                            title:"Hello World!"});   

        google.maps.event.addDomListener(map, 'click', updateCircle);
        google.maps.event.addDomListener(map, 'rightclick', removeRadius);

    function removeRadius(){
        radius.setMap(null);}

    function updateCircle(){
        var radius = new google.maps.Circle({map: map,
                                            radius: 400,
                                            center: centerlatlng,
                                            fillOpacity: 0});}      
    }

    </script>
  </head>
  <body onload="initialize()">
    <div id="map_canvas" style="width:50%%; height:50%%"></div>
  <body>
</html>
4

3 回答 3

2

您的半径变量是函数 updateCircle() 的本地变量。改为全球化。

//Global variables
var centerlatlng = new google.maps.LatLng(-27.467726,153.026633);
var radius;


function updateCircle(){
      // do not use the 'var' keyword here
        radius = new google.maps.Circle({map: map,
                                            radius: 400,
                                            center: centerlatlng,
                                            fillOpacity: 0});}      
    }
于 2012-09-15T05:48:20.227 回答
1

radius是在函数中本地声明的updateCircle(),因此不能在removeRadius().

如果您将声明从updateCircle()包含函数中移动initialize(),两者都updateCircle()removeRadius()能够看到它而不使其成为全局;

function initialize() {
    var radius;
    var mapOptions = {...

    function updateCircle(){
        radius = new google.maps.Circle({map: map, ...
于 2012-09-15T05:53:22.893 回答
0

您可以在谷歌地图 V3 中使用它:

var shape=null;

google.maps.event.addDomListener(drawingManager, "circlecomplete", function(circle) {
    shape=circle;
});

在为此分配变量后,当您要删除此圆圈时,只需调用此函数:

function removeOverlay {
    shape.setMap(null);
}

您只需将 google 返回的对象保存在特定变量中......

希望这会帮助你。

于 2012-09-15T11:17:43.663 回答