Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 525 Bytes

File metadata and controls

19 lines (11 loc) · 525 Bytes

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

Add the following code before </script> tag

            function drawCircle(){
                var circle = new H.map.Circle(myPos,5000);
                map.addObject(circle);
            }

            drawCircle();


Double-click on saved file to view on browser

Foo