带有选项的MapBox上的L.circleMarker不起作用

时间:2015-04-19 21:56:17

标签: leaflet mapbox

我正在尝试为我的MapBox添加一个圆圈标记,但是传递的选项并没有做它应该做的事情。我正在使用以下代码

    L.mapbox.featureLayer(
        { "geometry": {"type": "Point", "coordinates": [lng , lat]}, "type": "Feature", "properties": {} },
        { pointToLayer: function(feature, latlon) { 
            var marker = L.circleMarker(latlon, {
                radius: 2,
                color: "#ff0000"
            });

            return marker;
        } }
    ).addTo(map);

设置半径但颜色设置为默认值。

0 个答案:

没有答案