google maps api v3:在点击折线事件的两个现有点之间的折线上添加点

时间:2010-08-20 10:07:34

标签: google-maps-api-3 polyline

如何在点击折线事件的两个现有点之间的折线上添加点? 谢谢!

2 个答案:

答案 0 :(得分:6)

如果您只是在谈论只有2分的Polyline,则可以使用包含Polyline的{​​{3}}的中心。但Google Maps api v3并未实现Polyline.getBounds()功能。因此,您可以扩展Polyline类以包含getBounds函数:

google.maps.Polyline.prototype.getBounds = function() {
  var bounds = new google.maps.LatLngBounds();
  this.getPath().forEach(function(e) {
    bounds.extend(e);
  });
  return bounds;
};
仅有2个点的线上的

Polyline.getBounds()将包含要包含此线的区域。这个边界的中心应该是你的线的确切中心。如果Polyline包含超过2个点,则中心不会落在所点击线的中心,而是包含所有点的边界的中心。如果您想将mutli-segment Polylines与此函数一起使用,则需要更多的数学计算来计算单击的段。

以下是使用2分Polyline

的小例子
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <title>Right in Two</title>

    <style type="text/css">
      #map-canvas {
        height: 500px;
      }
    </style>

    <script type="text/javascript"
        src="http://www.google.com/jsapi?autoload={'modules':[{name:'maps',version:3,other_params:'sensor=false'}]}"></script>
    <script type="text/javascript">

      function init() {
        var mapDiv = document.getElementById('map-canvas');
        var map = new google.maps.Map(mapDiv, {
          center: new google.maps.LatLng(37.790234970864, -122.39031314844),
          zoom: 5,
          mapTypeId: google.maps.MapTypeId.ROADMAP
        });

        var points = [
                  new google.maps.LatLng(40.785533,-124.16748),
                  new google.maps.LatLng(32.700413,-115.469971)
        ];

        var line = new google.maps.Polyline({
          map: map,
          path: points,
          strokeColor: "#FF0000",
          strokeWeight: 2,
          strokeOpacity: 1.0
        });

        google.maps.Polyline.prototype.getBounds = function() {
          var bounds = new google.maps.LatLngBounds();
          this.getPath().forEach(function(e) {
            bounds.extend(e);
          });
          return bounds;
        };

        google.maps.event.addListener(line, 'click', function(e){
          var marker = new google.maps.Marker({
            map: map,
            position: line.getBounds().getCenter()
          });
        });

      };

      google.maps.event.addDomListener(window, 'load', init);
    </script>
  </head>
  <body>
    <div id="map-canvas"></div>
  </body>
</html>

答案 1 :(得分:0)

你只需要计算方位和50%的距离 - 在那里添加垂直。

上面的例子是边界的中心 - 它是相同的。

你可能需要一个临时的边界对象,它通过前一个和下一个垂直latlang扩展边界。