I´m also an fisherman and also try to create my own depth maps.
I´m also an fisherman and also try to create my own depth maps.
MainMap.CacheLocation = @"E:\Desktop\gmapcache\";
p.s. initial size is 32MB With GMapActive
.MapProvider = GMapProviders.GoogleMap
.LevelsKeepInMemmory = 6
.VerticalScroll.Enabled = True
.MinZoom = 3
.MaxZoom = 17
.Zoom = 4
.CanDragMap = True
.DragButton = Windows.Forms.MouseButtons.Left
.Manager.Mode = AccessMode.ServerAndCache
.CacheLocation = Application.StartupPath & "\" Only works for user that installed
' .CacheLocation = @"C:\ProgramData\GMAPTEst\" Errors
' .CacheLocation = "C:\Program Files (x86)\GMAPTEst\" Only works for user that installed
End With
...mission is in progress, great maps helps greatly! ;} ...real FLAT EARTH maps are missing though, no ANTARCTICA maps either
GMap.NET is great and Powerful, Free, cross platform, open source .NET control. Enable use routing, geocoding, directions and maps from Coogle, Yahoo!, Bing, OpenStreetMap, ArcGIS, Pergo, SigPac, Yendux, Mapy.cz, Maps.lt, iKarte.lv, NearMap, OviMap, CloudMade, WikiMapia, MapQuest in Windows Forms & Presentation, supports caching and runs on windows mobile!
Absolutely Fantastic Piece of Work. - share your projects,say thanks ;}
Preview:
The Greatest maps in the world:
...mission is in progress, great maps helps greatly! ;} ...real FLAT EARTH maps are missing though, no ANTARCTICA maps either
GMap.NET is great and Powerful, Free, cross platform, open source .NET control. Enable use routing, geocoding, directions and maps from Coogle, Yahoo!, Bing, OpenStreetMap, ArcGIS, Pergo, SigPac, Yendux, Mapy.cz, Maps.lt, iKarte.lv, NearMap, OviMap, CloudMade, WikiMapia, MapQuest in Windows Forms & Presentation, supports caching and runs on windows mobile!
Absolutely Fantastic Piece of Work. - share your projects,say thanks ;}
Preview:
The Greatest maps in the world:
LatLonglabel.Text = " " + gMapControl1.FromLocalToLatLng(e.X, e.Y).Lat.ToString()
+ "\n" + gMapControl1.FromLocalToLatLng(e.X, e.Y).Lng.ToString();
I've tested it with known locations and it is accurate.PointLatLng w = gMapControl1.FromLocalToLatLng(gMapControl1.Width - 3, gMapControl1.Height - 3);
string area = "";
area += " tblLocation.Longitude >= " + map_area.Left.ToString();
area += " AND tblLocation.Longitude <= " + w.Lng.ToString(); //map_area.Right.ToString();
area += " AND tblLocation.Latitude <= " + map_area.Top.ToString();
area += " AND tblLocation.Latitude >= " + w.Lat.ToString(); // map_area.Bottom.ToString();
I insert "area" in my SQL query when loading customers.PointLatLng w = gMapControl1.FromLocalToLatLng(gMapControl1.Width, gMapControl1.Height);
I found your post because I was having problems with ViewArea. I posted the problem here: