I have integrated a map into my project where I am currently plotting random coordinates. These coordinates are stored in a data table and everything is functioning smoothly.
However, I am facing an issue with implementing a zoom feature using the panTo
method. I want the map to gradually zoom in on a marker when it is clicked, but I am struggling to get it to work properly.
Any suggestions or solutions on how to achieve this would be greatly appreciated. Thank you in advance.
Here is a snippet from my GPSLib Class:
public static class GPSLib
{
// Code snippet for PlotGPSPoints method
}
Additionally, here is the onLoad()
method from the aspx page that creates the data table with the coordinates:
protected void Page_Load(object sender, EventArgs e)
{
// Code snippet for creating and populating the data table
}