For javascript you can use
map.addObject(new H.map.Circle( // The central point of the circle {lat:28.6071, lng:77.2127}, // The radius of the circle in meters 1000, { style: { strokeColor: 'rgba(55, 85, 170, 0.6)', // Color of the perimeter lineWidth: 2, fillColor: 'rgba(0, 128, 0, 0.1)' // Color of the circle } } ));
There should be a similar implementation for android.
Joey pinto
source share