谷歌地图api绘制折线与编码点

时间:2012-10-29 12:51:48

标签: javascript html google-maps-api-3

我是javascript和Google地图api的新手,所以我编码了这样的点:“yzocFzynhVq} @n} @o} @nzD”并尝试用它绘制折线,我还没有找到主题或文档到解决我的问题。关于如何解码它的主题很少,但我不需要做那件事。我只需要使用编码点绘制折线。有人可以举个例子吗?

1 个答案:

答案 0 :(得分:9)

请参阅geometry library documentation for decodePath

这会将您编码的字符串转换为google.maps.LatLng对象数组,可用于创建Polyline

Working example

工作代码段:

function initialize() {
  var myLatLng = new google.maps.LatLng(24.886436490787712, -70.2685546875);
  var mapOptions = {
    zoom: 13,
    center: myLatLng,
    mapTypeId: google.maps.MapTypeId.TERRAIN
  };

  var bermudaTriangle;

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


  // Construct the polygon
  bermudaTriangle = new google.maps.Polygon({
    paths: google.maps.geometry.encoding.decodePath("yzocFzynhVq}@n}@o}@nzD"),
    strokeColor: '#FF0000',
    strokeOpacity: 0.8,
    strokeWeight: 2,
    fillColor: '#FF0000',
    fillOpacity: 0.35
  });

  bermudaTriangle.setMap(map);
  map.setCenter(bermudaTriangle.getPath().getAt(Math.round(bermudaTriangle.getPath().getLength() / 2)));
}
google.maps.event.addDomListener(window, 'load', initialize);
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
#map_canvas {
  height: 100%;
}
@media print {
  html,
  body {
    height: auto;
  }
  #map_canvas {
    height: 650px;
  }
}
<script src="https://maps.googleapis.com/maps/api/js?libraries=geometry"></script>
<div id="map_canvas"></div>