如何在Google地图中获取叠加形状的fillColor?

时间:2013-10-29 07:01:18

标签: google-maps-api-3 properties overlay

看看这段代码:a是我们在里面保存圆形叠加层的对象。在Google地图中,我们可以输入{多边形,圆形,矩形,标记,折线}或中心{圆}等类型。想象一下,您在地图上创建了一个圆圈。你怎么能得到这样的东西:      a.fillColor = circle.fillColor;

<script>
function getProprties()
{
    var a = {};

    a.type = circle.type;
    a.center = circle.center;
    a.redius = circle.radius;
}
</script>

1 个答案:

答案 0 :(得分:3)

您应该可以使用MVCObjects

上提供的get功能来使用此功能
a.fillColor = circle.get('fillColor');