watbywbarif
watbywbarif

Reputation: 6977

WPF map control with supported directions, search

I am searching Windows 7 compatible WPF/WinForms control that can display maps, calculate directions, perform searching and other map operations. Basically, it all doesn't have to integrated in one solution, it can be something like one control for maps display (Google or Bing or Nokia or OSM) and some library that supports all other operations, but it should be easy to integrate this two, like draw calculated route on map or fetch calculated routes from map. What i don't want is that all is bundled in map control and not accessible from code behind, like having some maps.google in WebBrowserControl.

Upvotes: 1

Views: 5109

Answers (4)

watbywbarif
watbywbarif

Reputation: 6977

This is awsome, it has everything I need, and much more: GMap.NET - Great Maps for Windows Forms & Presentation

Upvotes: 1

Ramashankar
Ramashankar

Reputation: 1658

Displaying Google Maps in a WPF application can involve using the Google Maps API for Flash or the Google Maps JavaScript API.

You might find something interested and much similar to what you are looking for WPF Map App: WPF Meets Google Geocoding and Static Maps APIs

enter image description here

Upvotes: 2

ChrisSwires
ChrisSwires

Reputation: 2723

It seems your best bet would simply be to use the Google Maps API for Javascript for front end display logic and then Google's selection of web services for any code-behind calculations, geocoding, routing etc.

There is no need for your solution to be entirely front end as you specify but obviously there is a need for front end mapping functionality. All of the services can be accessed directly from the RESTful Google services from your c# (or even ajaxed javascript), I don't understand the need for it to be specifically WPF?

Upvotes: 0

Related Questions