Click here to Skip to main content
15,906,236 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,

I have used a google static maps before, but need to
use a more advanced map now. I had a look at: GMap.NET - Great Maps for Windows Forms and Presentation[^]

I took some time trying to figure out this Gmaps, but not helping much. I only need to connect to google or bing maps (not static) using addresses and be able to set
custom markers.

Please any help would be appriciated!

This is what I used before:

C#
DataTable dt = new DataTable();

            try
            {
                StringBuilder OpenMap = new StringBuilder();
                OpenMap.Append("http://maps.googleapis.com/maps/api/staticmap?center=" + strCity + "&zoom=14&size=400x400&sensor=false");

                wb_ConnectionStatus.Navigate(OpenMap.ToString());
            }

            catch (Exception ex)
            {
                MessageBox.Show(ex.Message.ToString(), "Unable To Load Web Browser");
            }
Posted

1 solution

The first place to ask such a question is at the "Comments and Discussions" section of the article. You haven't done that yet.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900