0

我正在尝试使用 svg 形状在谷歌地图上绘制一个椭圆。

以下路径(星号)工作正常:

var goldStar = {
    path: 'M 125,5 155,90 245,90 175,145 200,230 125,180 50,230 75,145 5,90 95,90 z',
    fillColor: "yellow",
    fillOpacity: 0.8,
    scale: 1,
    strokeColor: "gold",
    strokeWeight: 14
};

但是这个(椭圆弧)根本没有显示。

var elipticalarc = {
    path: 'M 0,0 a20,10 0 1,1 100,100',
    fillColor: "yellow",
    fillOpacity: 0.8,
    scale: 1,
    strokeColor: "gold",
    strokeWeight: 14
};

您可以通过将路径替换为以下链接中的 d 属性来设置两个路径:

http://www.w3schools.com/svg/tryit.asp?filename=trysvg_path

4

1 回答 1

0

It turned out it was just really tiny.

于 2012-08-07T11:01:47.923 回答