CircleOptions 对象规范

圆形覆盖物参数。

属性

名称 类型 说明
center LatLng 圆形的中心点坐标。
clickable Boolean 圆形是否可点击。
cursor String 鼠标在圆形内的光标样式。
editable Boolean 可选项:
true - 启动编辑功能,
false - 默认,不启动编辑功能,
启动编辑功能后,可拖动编辑点对半径和圆心进行调整。
fillColor Color | String

圆形的填充色,可通过Color对象的alpha属性设置透明度。

map Map 要显示圆形的地图。
radius Number 圆形的半径。
strokeColor Color | String

圆形的边框颜色,可通过Color对象的alpha属性设置透明度。

strokeDashStyle String 圆形的边框样式。实线是solid,虚线是dash。
strokeWeight Number 圆形的边框线宽。
visible Boolean 圆形是否可见。
zIndex Number 圆形的zIndex值。

实例

本示例中,介绍如何使用圆形覆盖物的参数

JavaScript
function init() {
    var center = new qq.maps.LatLng(39.982163, 116.306070);
    var center2 = new qq.maps.LatLng(39.98555, 116.3);
    var map = new qq.maps.Map(document.getElementById("container"), {
        center: center,
        zoom: 14
    });
    var circle = new qq.maps.Circle({
        //圆形的中心点坐标。
        center: center,

        //圆形是否可点击。
        clickable: true,

        //鼠标在圆形内的光标样式。
        cursor: 'pointer',

        //圆形的填充色,可通过Color对象的alpha属性设置透明度。
        fillColor: "#00f",
        //fillColor: new qq.maps.Color(0,15,255, 0.5),

        //要显示圆形的地图。
        map: map,

        //圆形的半径。
        radius: 500,

        //圆形的边框颜色,可通过Color对象的alpha属性设置透明度。
        strokeColor: "#fff",

        //圆形的边框样式。实线是solid,虚线是dash。
        strokeDashStyle: "dash",

        //圆形的边框线宽。
        strokeWeight: 5,

        //圆形是否可见。
        visible: true,

        //圆形的zIndex值。
        zIndex: 1000
    });
}
window.onload = init;
JavaScript+HTML
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <title>圆形覆盖物参数</title>
    <style type="text/css">
        * {
            margin: 0px;
            padding: 0px;
        }
        body,
        button,
        input,
        select,
        textarea {
            font: 12px/16px Verdana, Helvetica, Arial, sans-serif;
        }
        #info {
            width: 603px;
            padding-top: 3px;
            overflow: hidden;
        }
        .btn {
            width: 190px;
        }
    </style>
    <script charset="utf-8" src="https://map.qq.com/api/js?v=2.exp&key=OB4BZ-D4W3U-B7VVO-4PJWW-6TKDJ-WPB77"></script>
    <script>
        function init() {
            var center = new qq.maps.LatLng(39.982163, 116.306070);
            var center2 = new qq.maps.LatLng(39.98555, 116.3);
            var map = new qq.maps.Map(document.getElementById("container"), {
                center: center,
                zoom: 14
            });
            var circle = new qq.maps.Circle({
                //圆形的中心点坐标。
                center: center,

                //圆形是否可点击。
                clickable: true,

                //鼠标在圆形内的光标样式。
                cursor: 'pointer',

                //圆形的填充色,可通过Color对象的alpha属性设置透明度。
                fillColor: "#00f",
                //fillColor: new qq.maps.Color(0,15,255, 0.5),

                //要显示圆形的地图。
                map: map,

                //圆形的半径。
                radius: 500,

                //圆形的边框颜色,可通过Color对象的alpha属性设置透明度。
                strokeColor: "#fff",

                //圆形的边框样式。实线是solid,虚线是dash。
                strokeDashStyle: "dash",

                //圆形的边框线宽。
                strokeWeight: 5,

                //圆形是否可见。
                visible: true,

                //圆形的zIndex值。
                zIndex: 1000
            });
        }
        window.onload = init;
    </script>
</head>

<body onload="init()">
    <div style="width:603px;height:300px" id="container"></div>

</body>

</html>