Hi frnds, I am using c# code to draw a polyline on the google map.My code is
GooglePolyline PL = new GooglePolyline(); GooglePoint gp = new GooglePoint(); gp.ID = "gp"; gp.Latitude = objTracking.Latitude[objTracking.PointNo - 1]; gp.Longitude = objTracking.Longitude[objTracking.PointNo - 1]; PL.Points.Add(gp); PL.Points.Add(gp1); GoogleMapForASPNet1.GoogleMapObject.Polylines.Add(PL); ------------------------------------------------------------------------------------------------ I have very large number of values (6000) so showing these values on the google map using c# code is very difficult it makes the whole site verr slow.To over come this problem i used below function. GPolyline.fromEncoded using javascript but i don't want to use the javascript function.i want to pass the encoding value to c# code which i mentioned on the top of my code. In brief, i need to pass the encdoing lat and long values to my c# google map control. Please show me some to way to get rid off this problem --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
