Jaya Mayu
Jaya Mayu

Reputation: 17247

Embed Google Maps in C#

I'm developing an App for a Taxi company for my final year project. I'm using Google latitude to track the location of the driver.

I can successfully retrieve both latitude and longitude of the driver (i.e the gps enabled phone) inside C#.

Now I want to show the exact location in a form probably with a pin or mark pointed at the retrieved lat, lon crossing point.

Please help. thanks in advance.

Upvotes: 8

Views: 31816

Answers (3)

Scott Chamberlain
Scott Chamberlain

Reputation: 127543

Here is the landing page for the Google maps API. The one you will likely need is Static Maps API (note you can only get 25 000 uniuqe images per client per day, you will not likely hit this but it is something to be aware of). If you want a interactive map you will need to use a WebBrowser control and use the javascript api


Upvotes: 11

Carles Company
Carles Company

Reputation: 7216

Another option is to use a premade control like this one.

Upvotes: 7

Chris Haas
Chris Haas

Reputation: 55417

The easiest solution would be to just use the WebBrowser control, then you don't have to embed anything.

Upvotes: 2

Related Questions