1

我正在尝试使用 2 个纬度和经度之间的测地线点在谷歌地图中绘制一个半圆。

我找到了一个正是我需要的地方:http: //maps.forum.nu/temp/gm_bearing.html

It was using the API V2 and I need the V3.

所以我把它转换了。

我遇到的问题是半圆没有被正确绘制,我不知道为什么。

这就是绘制半圆时发生的情况。 在此处输入图像描述

但是当我缩小或缩小半圆时,它看起来很好。 在此处输入图像描述

我已经在 jsfiddle 中重现了这个问题。

http://jsfiddle.net/Morlock0821/4dRB2/1/

任何帮助将不胜感激。

谢谢。

4

1 回答 1

3

在 drawCircle 函数中删除这些行:

var basePoints = calculateGeodesicPoints(circlePoints[circlePoints.length - 1], circlePoints[0]);
while (basePoints.length) {
  circlePoints.push(basePoints.shift());
}

在此处输入图像描述 http://googlemaps.googlermania.com/google_maps_api_v3/en/draw-semi-circle.html

于 2012-12-21T18:18:45.157 回答