让用户只绘制一个圆圈作为源,但一些圆圈作为目标

let user draw only one circle as source but some circles for destination

我有一个非常简单的应用程序(只有一页),用户可以在地图上绘制多边形,它还可以获取用户绘制的圆的纬度、经度、圆心和半径。

我想限制用户只绘制一个圆作为源(我这样做并且工作正常),然后让 him/her 到 select 地图上的一个或多个目的地。因此,第一个圆圈可以是 "source",接下来的圆圈可以是 "destinations"..

我的问题:如何为这些圆圈分配不同的变量以区分来源地和目的地?

这是我的代码(我用的是googleapi,绘图库:https://developers.google.com/maps/documentation/javascript/examples/drawing-tools):

<script type="text/javascript">

 (function () {
     var circle;

   function initialize() {
    var mapOptions = {
      center: new google.maps.LatLng(-34.397, 150.644),
      zoom: 8
   };

  var map = new google.maps.Map(document.getElementById('map-canvas'),
    mapOptions);

  var drawingManager = new google.maps.drawing.DrawingManager({
    drawingMode: google.maps.drawing.OverlayType.MARKER,
    drawingControl: true,
    drawingControlOptions: {
      position: google.maps.ControlPosition.TOP_CENTER,
      drawingModes: [
        google.maps.drawing.OverlayType.MARKER,
        google.maps.drawing.OverlayType.CIRCLE,
        google.maps.drawing.OverlayType.POLYGON,
        google.maps.drawing.OverlayType.POLYLINE,
        google.maps.drawing.OverlayType.RECTANGLE
      ]
    },
    markerOptions: {
      icon: 'images/beachflag.png'
    },
    circleOptions: {
      fillColor: '#ffff00',
      fillOpacity: 1,
      strokeWeight: 5,
      clickable: false,
      editable: true,
      zIndex: 1
    }
  });
  drawingManager.setMap(map);
  google.maps.event.addListener(drawingManager, 'circlecomplete', onCircleComplete);
 }

 function onCircleComplete(shape) {
        if (shape == null || (!(shape instanceof google.maps.Circle))) return;

        if (circle != null) {
            circle.setMap(null);
            circle = null;
        }
        circle = shape;
        var radius = circle.getRadius();
        center = circle.getCenter();
        var latitude = circle.getCenter().lat();
        var longitude = circle.getCenter().lng();
    }

   google.maps.event.addDomListener(window, 'load', initialize);
 })();
</script>

一个简单的方法:

存储所有的圈子,例如在数组中,根据数组的长度,您将知道它是第一个圆(源)还是不是(目标)。

设置不同的属性也不复杂,google.maps.Circle 是一个 MVCObject(也是一个原生 JS 对象),您可以存储自定义属性,例如通过:

  • //vanilla javascript   
    shape.customProperty='customValue';
    
  • //MVCObject-specific, single property
    shape.set('customProperty','customValue');
    
  • //MVCObject-specific, multiple properties
    shape.setValues({customProperty :'customValue',
                     anotherProperty:'anotherValue'});
    
  • //shape-specific, multiple properties
    shape.setOptions({customProperty :'customValue',
                      anotherProperty:'anotherValue'});
    

(确保您的自定义 属性-名称不与内置名称竞争,例如中心、半径等)

可能的实现(为圆圈存储自定义 type-属性,设置为 sourcedestination):

function onCircleComplete(shape) {
  var map=shape.getMap();
   //create an array where we store the circles
   if(!map.get('circles')){
     map.set('circles',[]); 
   }
   shape.setOptions(
                      (!map.get('circles').length)
                        ?//first circle
                         {type:'source',
                          //a different fill when you want to
                          fillColor:'#ff0000'
                         }
                        ://other circles
                         {type:'destination'}
                    );

    //push the circles onto the array 
    map.get('circles').push(shape);
}