Im developing an webapplication using asp.NET C#. I am currently using this map controller. http://googlemap.artembg.com/
What i want to do is that i want to make it possible for the user to click on the map and a marker should be seen exactly where the user clicked and a radius circle around that area, and it should be possible for the user to change the radius. I’ve search everywhere for some samples of this in ASP.Net c# but i can’t find it. I want something like this: http://www.freemaptools.com/radius-around-point.htm
Any suggestions?
Maybe to help you get started you can find this javascript code useful, then try to adapt it to whatever the C# control provides.
The code above creates a circle with radius of 10 whenever you click on the map. You can take it from there and try to adapt it to your needs.
The above assumes you have a div with an id of myMap where your map will be shown.