GMap.NET is a simple server control to allow easy implementation of google maps into any C# or VB.NET project without the use of any code and includes seamless integration with a .Kml file.
Questions tagged [gmap.net]
270 questions
4
votes
0 answers
GMap.NET question
i am trying to use GMap.NET to display a map using the following code
GMapControl g = new GMapControl();
GMap.NET.GMaps.Instance.Mode = GMap.NET.AccessMode.ServerOnly;
g.Dock = DockStyle.Fill;
pnlMap.Controls.Add(g);
g.MapType =…

simon
- 185
- 3
- 9
4
votes
1 answer
GMap.Net zooming issue mouseovering / hovering a marker
When my cursor is over a marker, it doesn't zoom. Is there any way around this?
Cheers
public MainForm(Dictionary startupParams)
{
InitializeComponent();
gMapControl.MapProvider = GMapProviders.GoogleMap;
…

Baz Guvenkaya
- 1,482
- 3
- 17
- 26
4
votes
3 answers
GMap.Net marker initially in incorrect position
I have added a marker using GMap with the lat/long specified. When the application starts, the marker is placed in the incorrect position(at the center of the GMap control) and then when I zoom, it then goes to the specified coordinates. Is this a…

Vaibhav Pandya
- 115
- 2
- 10
4
votes
4 answers
GMap.NET shows no map
I'm trying to use the GMap.NET.WindowsForms control in my Windows forms application but I cannot make it show me any map.
Here is what I did:
I added the control to my Visual Studio's 2010 toolbox by clicking 'Choose Items...' from the toolbox's…

Mariusz Schimke
- 3,185
- 8
- 45
- 63
4
votes
2 answers
multiple markers on gmap.net
Hi I have 1000 latitudes , longitudes and want to display all of them on maps .
I tried several ways to do it but not luck.....I have a datagridview which has client,lat,long,region. each client has a region.I have a combobox when I click on…

kiran v
- 137
- 1
- 4
- 13
3
votes
1 answer
Zoom and Pan in GMap.net
I'm trying to make GMap.Net control multitouch enabled, using WPF build-in events but i wasn't successful.
I found a series of articles about multitouch like this and this one. In all of them, ManipulationContainer is a canvas and movable controls…

Jalal
- 6,594
- 9
- 63
- 100
3
votes
2 answers
Gmap performance with a lot of markers?
I am using the WinForm version of Gmap.NET. What I'm doing is creating 1 overlay per marker and then add that to my map control. This significantly reduces the lag in my program. The only problem now is, if I wanted to hide an overlay, I have…

The Newbie
- 379
- 4
- 18
3
votes
1 answer
Showing circle on the map displays elongated ellipse instead
I need to display a circle around a point on the map. I'm working with the windows app and GMap.NET control. Instead of a circle, I'm getting this:
Here is a sql I'm using to get polygon points:
declare @lat float = 43.722385, @lng float =…

InitK
- 1,261
- 13
- 21
3
votes
0 answers
How to build application using GMap.Net in C# with offline data?
I have an experiment to build offline application using GMap.Net in C#. I have a problem about provider local cache have limit max 32 MB in hard disk and 22 MB in memory. What can I to do to change it?

surya hanggara
- 31
- 2
3
votes
2 answers
configuring GMap.NET for .NET 4.0
How can i configure GMap.NET for c# .NET 4.0 . I found this " If you target .NET4, use this configuration :

Alex
- 10,869
- 28
- 93
- 165
3
votes
1 answer
GMap.Net tooltips with multiple overlays
I have a map program that uses 2 overlays with markers on both overlays. The problem I am having is if I hover on a marker in the overlay[0] the tooltip is underneath the markers on overlay[1]. I can override GMapBaloonTool. Is there a way when…

kgsw
- 95
- 1
- 10
3
votes
2 answers
How Make my project sleep without Thread.Sleep()?
I have WPF project. I am working with GMap.Net.
My project is about to show the buses location over the city. For a demo version I want to have list of points and change the marker position every 5 seconds.
There are 2 problem. First of all I…

Meyssam Toluie
- 1,061
- 7
- 21
3
votes
1 answer
Is it possible to change the color of street in g-map?
I have a WPF project that shows all of buses route over the city and the current position of every bus. I can Show all positions using markers and also all of routes but the routes are shown by drawing a line inside the streets.
It is going to be…

Meyssam Toluie
- 1,061
- 7
- 21
3
votes
1 answer
only show a small part of the map in C# code by GMAP and OSM
I would like to show a map by Open Street Map.
I have a C# code in VS2013 to show a map by GMAP and OSM.
The map can only show a small part of the map. I think I can see a region map for the specified lat/long.
Why ?
Thanks
using…

user3601704
- 753
- 1
- 14
- 46
3
votes
3 answers
add custom marker(square) to Gmap
Basically I want to draw a filled square and add it (and use it) as a marker to Gmap. I tried drawing a square and use it as a bitmap but it asks me for the x y coordinates and I don't know what values to put for that because the marker already uses…

Vaibhav Pandya
- 115
- 2
- 10