New Post: how to use existing markers?
problem solved..mList.add(item) every time I click a marker, it adds it on the List so I can pull it out on other events.
View ArticleNew Post: CacheOnly mode in Windows mobile
Hi Radioman, I'm having problem running the cache only in windows mobile. This is what i did. I run the demo desktop version then used the prefetch data in cache to create a cache. then exported the...
View ArticleNew Post: CacheOnly mode in Windows mobile
its okay now just a prob with dll forgot to set copy if newer T_T
View ArticleNew Post: Trouble with some little code piece
Hi, On a WindowsForms I implement the above code My call for the class looks like this: private void gMapControl1_OnMapZoomChanged() { GMapMarkerCircle circ = new GMapMarkerCircle(new...
View ArticleNew Post: How to catch if I am clicking on a circle drawn on the map.?
I am using the standard "GMapMarkerCircle" found in demo source. Public Sub New(ByVal p As PointLatLng, ByVal Radiusen As Integer, ByVal id As String) MyBase.New(p) Radius = Radiusen Tag = id...
View ArticleNew Post: polygons in Google Maps for Windows :: HELP!
Hello I jump into this topic 3 years after , but is it something new? It seems that the Polygon class still does not have any Contains() method It can be however very usefull For now I'm using a tricky...
View ArticleNew Post: Setting up Proxy
Hi everyone, I´m having trouble using the library to a proxy connection. How can I set the proxy for the library?. The sample is working right, so I assume it has something to view with this. Thanks in...
View ArticleNew Post: Extending maps
I'm using GreatMaps to plot journeys of vessels and ran into the problem that the maps stop at the 180° meridian, i.e. no continuous maps. I've made changes, which I'll list in the next messages, in...
View ArticleNew Post: Extending maps
Changes to Core.cs. Some helpers:#if JpContinuousMap private GPoint _mapTopLeftPixel; private GPoint _mapBottomRightPixel; /// <summary> /// Top-left corner of map in pixels /// </summary>...
View ArticleNew Post: Extending maps
Changes to DrawTile.cs public bool Equals(DrawTile other) { #if JpContinuousMap // Add extra test to allow copies to the side of the map return ((PosXY == other.PosXY) && (PosPixel ==...
View ArticleNew Post: Extending maps
Changes to GMapContols.cs#if JpContinuousMap // Selection point on control Point selectionStart; Point selectionEnd; #else // JpContinuousMap PointLatLng selectionStart; PointLatLng selectionEnd;...
View ArticleNew Post: Extending maps
Changes to GMapControl.cs continued. Changes to OnMouseDown: else if (!isSelected) { isSelected = true; SelectedArea = RectLatLng.Empty; #if JpContinuousMap selectionEnd = Point.Empty; selectionStart =...
View ArticleNew Post: WPF custom route marker
Hi Radioman! Thanks for your job, I already used it for my projects, really helpful! I am stuck with an issue concerning custom marker route for WPF. I did some custom marker for points (defined in...
View ArticleNew Post: Setting up Proxy
Here is how I do it: GMapProvider.WebProxy = New System.Net.WebProxy(AppHandler.ProxyAddress, AppHandler.ProxyPort) GMapProvider.WebProxy.Credentials =...
View ArticleNew Post: TypeInitializationExeption was unhandled
Hi... I have the problem with mi project... I was developing my project on another computer and I copy the project in my laptop when I get the following...
View ArticleNew Post: Issues with MapControl running on non-UI thread
I'm experiencing trouble while trying to grab the contents of the hidden WinForms-based map control. What I need is to a) set the control's size in pixels, b) display map from specific provider and c)...
View ArticleNew Post: Issues with MapControl running on non-UI thread
check BigMapMaker demo project or StaticImage function in Demo.WindowsForms
View Article