When I tried to draw circle on JMapViewer with the following parameters:
Latitude:30.58654740901267 Longitude:31.504483034999993 radius : 100
I got the following gigantic circle
What is the measurement unit used for this radius variable ?!!
code below
MapMarkerCircle circle = new MapMarkerCircle(c, 100);
Color color = new Color(50, 0, 0,100);
circle.setBackColor(color);
mapViewer.addMapMarker(circle);