2 * L.CircleMarker is a circle overlay with a permanent pixel radius.
5 L
.CircleMarker
= L
.Circle
.extend({
11 initialize: function(latlng
, options
) {
12 L
.Circle
.prototype.initialize
.call(this, latlng
, null, options
);
13 this._radius
= this.options
.radius
;
16 projectLatlngs: function() {
17 this._point
= this._map
.latLngToLayerPoint(this._latlng
);
20 setRadius: function(radius
) {
21 this._radius
= radius
;