Gets or sets the radius of this Marker in meters.
Namespace: MindFusion.Mapping
Package: CircleMarker.js
JavaScript Copy Code |
---|
Object.defineProperty(CircleMarker.prototype, "radius", { value: Number }); |
Number. The radius in meters.
The following code creates a new CircleMarker and adds it to the decorations of a DecorationLayer.
JavaScript Copy Code |
---|
var m = MindFusion.Mapping; // create a new instance of the mapView var markers = new m.DecorationLayer("Images"); // create some markers with images view.layers.add(markers); |