0

我想在 gmap3 中添加地理围栏。我认为最基本的方法是绘制一个圆圈并在添加标记时检查标记是否在圆圈的范围内。

我加了一个圈

var fence = $('#dispatcher').gmap3(
  { action: 'addCircle',
    circle:{
      options:{
        center: [53.99212, -1.541812],
        radius : 3000,
        fillColor : "#FFAF9F",
        strokeColor : "#FF512F" 
      }
    }
  }
);

知道我将如何获得检查的界限吗?

4

1 回答 1

0

也许使用

circle.getBounds();

它在此处列出Google maps V3 API,然后使用contains(latLng:LatLng)

于 2012-10-08T16:59:16.387 回答