New Post: how to rotate a marker 0-360 degrees
You have to create a matrix for the Graphix on the OnRender method Then RotateAt the matrix Something like thispublic override void OnRender(Graphics g) { Point p0 = LocalPosition; Matrix mx = new...
View ArticleNew Post: Can i use Gmap.NET within MVVM WPF application architecture?
Thank you, for answer. But Gmap.NET control has a classic events, but how to handle GMap.NET events with MVVM model?
View ArticleNew Post: Can i use Gmap.NET within MVVM WPF application architecture?
events are part of controller, like requests in the web app
View ArticleNew Post: Google Style Clustered Tooltips
Sorry about that. I created GMapImage for myself by inheriting from GMapMarker. See below:using System.Drawing; using GMap.NET.WindowsForms; namespace XXXXXX { public class GMapImage : GMapMarker {...
View ArticleNew Post: Google Style Clustered Tooltips
As for transparency... You need to make sure that the image colors have an alpha characteristic set. You have a few options. If you have a color you want to be completely transparent, this is easy. For...
View ArticleNew Post: how to use cached info
hello, everyone I am using GMap.net and seen that it's professional. I used it online very good... But I don't know how to cache maps for using offline and how to make operations on that offline maps....
View ArticleNew Post: Google Style Clustered Tooltips
i recommend to make Pen static or using(Pen pen = new Pen(Brushes.Red, 2)) { .. ..because rendering is done many times per second, if you move the map, you'll get huge memory leak..
View ArticleNew Post: how to use cached info
if you see the map, it's already in cache or is being cached, it's done automaticallyyou can use demos to prefetch selected area
View ArticleNew Post: how to rotate a marker 0-360 degrees
This work fineclass C_GmapDirectionMarker : GMapMarker { Color Co; double Angle = 0; Image Img; public C_GmapDirectionMarker(PointLatLng p0,double Angle, Image _Img) : base(p0) { this.Img = _Img;...
View ArticleNew Post: how to rotate a marker 0-360 degrees
Thanks for that. I just tried it. It almost worked. It rotates the markers wonderfully, but it places them in the upper left corner. You guys are the best. Don't spend any more time on this. I...
View ArticleNew Post: how to rotate a marker 0-360 degrees
Here is how it works on my road And the icon used
View ArticleNew Post: Caching to shared folder
i've explained, and if you want to know the details, check the code
View ArticleNew Post: move marker along the route
How are you going to position the marker? Just on the points of the route? If the distance between the route points is large, the movement of the marker will be jumpy... If you need a method to get the...
View ArticleNew Post: Hot Build dll
what installer did you use? iExpress, Wix, clickteam, other? Just curious.
View ArticleNew Post: how to rotate a marker 0-360 degrees
I just downloaded new source (greatmaps_5794a8864f7c) I modified the Flight Radar Demo to show all points at 45 degree angle. The points are at an angle. There are two things that don't seem correct....
View Article