BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void ImageryLayer_MarkerSelected(object sender, Syncfusion.SfMaps.XForms.MarkerSelectedEventArgs e)
{
double latitude = Convert.ToDouble(e.MapMarker.Latitude);
double longitude = Convert.ToDouble(e.MapMarker.Longitude);
layer.GeoCoordinates = new Point(latitude, longitude);
sfmap.ZoomLevel = 4;
} |