Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 328 Bytes

File metadata and controls

19 lines (12 loc) · 328 Bytes

Draw a circle of radius 2 Km using add object of Interactive maps API

Add the following code before </script> tag

function drawCircle()
{
var circle = new H.map.Circle(MyPos,2000)
map.addObject(circle)
}

drawCircle()


Double-click on saved file to view on browser

Foo