New Post: Moving map to center on new marker location
OK, solution in hand. This routine works. It will need some refinement to make it a function that works in the general case, but it's a start. private void button4_Click(object sender, EventArgs e) {...
View ArticleNew Post: Caching to shared folder
Radioman, could you please clarify 2 questions.Is it really necessary to set up secondary cache? In my environment it's not good - application setup should be as simple as possible. And only one mode -...
View ArticleNew Post: Can i use Gmap.NET within MVVM WPF application architecture?
Hello, i am new in WPF, at this moment i am not have complete realized WPF applications. At now i am research the best approach to build WPF application. MVVM looks like the most attractive. My goal is...
View ArticleNew Post: Wait for mouse double click
Any ideia about how to do it? That logic for wait the mouse click that is missing because the request is coming from a MDI Child Form acting over the Main Form.
View ArticleNew Post: Moving map to center on new marker location
How about: private bool IsMarkerVisibleInMap(GMapControl map, GMapMarker marker) { return map.CurrentViewArea.Contains(marker.Position); }
View ArticleNew Post: Moving map to center on new marker location
That's alot easier. Thank-you, Xandolph. -Chuck
View ArticleNew Post: Moving map to center on new marker location
So, here's my final solution. It also takes into account the size of the marker, making sure it is entirely in view. Thanks again to Xandolph. private Boolean IsInView(GMapControl Map, GMapMarker...
View ArticleNew Post: Bitmap in wrong position on map when zoomed out
Just want to say first of all great, great project. I have been using it for a couple of months and have had wonderful success with the WPF version of this control. I am having an issue with showing a...
View ArticleNew Post: Bitmap in wrong position on map when zoomed out
Nevermind, ID10T error. I had accidentally copied in some code that had an offset and that what was causing it. Couldn't see the forest for the trees :D
View ArticleNew Post: Google Style Clustered Tooltips
mike_mankus wrote: I'm doing something quite a bit different, but here is a good link on creating heatmap type images:http://dylanvester.com/post/Creating-Heat-Maps-with-NET-20-(C-Sharp).aspx Obviously...
View ArticleNew Post: Display direction on route
Hello Is there any build-in method or property to display the direction of a route between two point ? Or do you have any suggestion to do it ? Thanks for help
View ArticleNew Post: move marker along the route
I'm trying to figure the best way to move a marker along the route using right / left arrow or MouseWheel The idea is to emulate manualy the vehicle movement (can be usefull when track looks like...
View ArticleNew Post: how to rotate a marker 0-360 degrees
Hi, I un-commented out some code that appeared to use the Bearing. It sort of worked, but rotated the canvas and markers in a way I can't understand. So I have hope that it could work, but don't have...
View ArticleNew Post: Display direction on route
pureprojection.cs /// <summary> /// Accepts two coordinates in degrees. /// </summary> /// <returns>A double value in degrees. From 0 to 360.</returns> public double...
View ArticleNew Post: Painting Map on Startup
I am writing an MDI application that uses Tab Controls. The GMap control is in tab #3. Using debug output, I know that the routine that sets-up the map control is running, but the map does not actually...
View ArticleNew Post: Painting Map on Startup
Let me clarify something.... I know I'm not supposed to see the map without selecting the tab for its page. The problem is when I select the tab for the first time, the control is blank and it takes a...
View ArticleNew Post: MarkerClick event not works
Hello, problem is back, i have more routes on map - for example 4, when i click on the marker, dialog is popup displaying 4 times..as count of tracks..the same information about one point. Definition...
View ArticleNew Post: Validation of a Direction (Street address)
HI, i'm making a litle GIS software wit this grate app!! I need at this moment to make an "address validation" to save this address in my local database, validated with some provider, like googlemaps...
View ArticleNew Post: Installer
I notice there are several files involved for a binary release, GMAP.NET.dll, WindowForm.exe. Q: Is it possible to get rid of the separate dll and compile it into strictly into a single .exe ? The...
View Article