Advertisement
Advertisement
| 09.06.2008 at 06:34PM PDT, ID: 23709488 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: |
'Create points for polyline Dim GP1 As New GooglePoint() GP1.ID = "GP1" GP1.Latitude = 43.65669 GP1.Longitude = -79.44268 GP1.InfoHTML = "This is point 1" GoogleMapForASPNet1.GoogleMapObject.Points.Add(GP1) Dim GP2 As New GooglePoint() GP2.ID = "GP2" GP2.Latitude = 43.66619 GP2.Longitude = -79.44268 GP2.InfoHTML = "This is point 2" GoogleMapForASPNet1.GoogleMapObject.Points.Add(GP2) Dim GP3 As New GooglePoint() GP3.ID = "GP3" GP3.Latitude = 43.67689 GP3.Longitude = -79.4327 GP3.InfoHTML = "This is point 3" GoogleMapForASPNet1.GoogleMapObject.Points.Add(GP3) 'Create polyline between points GP1, GP2 and GP3 'Define polyline Dim PL1 As New GooglePolyline() PL1.ID = "PL1" 'Give Hex code for line color PL1.ColorCode = "#0000FF" 'Specify width for line PL1.Width = 5 //Add points PL1.Points.Add(GP1) PL1.Points.Add(GP2) PL1.Points.Add(GP3) 'Add Polyline to Google Map control, GoogleMapForASPNet1.GoogleMapObject.Polylines.Add(PL1) |