using google maps api in a windows form application [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am making windows based application where I do a lot of data processing and end up with list of coordinates and other information. I would like to use to plot markers, routes etc on a google map.
I believe that the google api is meant for web based applications.
I would like to keep the solution desktop based since that framework is best suited to do all the data processing I want.
Is there a clean, non third party based solution to use google maps and the api to do drawing and marking on the map from within the .net application?

You can use GreatMaps GMap.NET control for Microsoft's platforms.
it is across platform, open source .NET control from Microsoft.
check the below link to understand how to use GMap.Net control
GMap.NET Control

Related

What can I draw on in an Asp.net Web Application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am attempting to develop a web page in which the codebehind draws diagrams. I have an analagous forms application which uses a picturebox, and the replies to the question here suggest I should use an Image Control.
But it isn't obvious how I should set about drawing my triangles and circles on this control. So: is an image control what I want? If so, can someone direct me to a tutorial or an example as to how to draw on it?
If it isn't, what should I be using? (What I am drawing isn't a graph.)
Don't do this on the server. Use client-side libraries. What you can do on the server - is prepare data for the diagram, send it to the client to do actual drawing.
For example mxGraph library has a nice .NET component that builds XML for the diagram on the server and then client-side draws diagram based on that XML.
The above is a commercial products, but there're free alternatives out there as well.

WebCam Video Recording in MPEG using C# Desktop Application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am developing an application which requires me to connect to webcam and record the video in MPEG format as it is VCD compliant. The application is in WinForms however, WPF solution is also fine. I am not interested in WebBased Flash/Silverlight solutions I am only interested in free or opensource solutions or controls.
Is there such solution available for C#/.NET?
The following 2 open source projects seem to contain the kind of control you are building.
http://www.codeproject.com/Articles/285964/WPF-Webcam-Control
http://easywebcam.codeplex.com/
The best libraries I know are these.
FFMpeg.NET
FFMpeg-Sharp
FFLib.NET
Other than that, you can do "console" operations to get it done.

Implementing an Excel-like formula engine [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for a professional tool that will enable me to implement an excel like formula engine.
I require support for custom functions, an editor (in winforms or WPF) which gives a descent user experience (Intellisense , auto complete, partial evaluation of the formula etc...)
All I could find so far are just back-end projects such as:
http://www.codeproject.com/Articles/17853/Implementing-an-Excel-like-formula-engine
http://www.codeproject.com/Articles/57264/Eval3-wrapper
And those do not provide any client side , only backend engine.
There are some Excel-formula-engines out there (mostly commercial) - but since you need a frontend too the only one I know of is SpreadsheetGear. Hope this helps...
Spreadsheetgear is one of the more established products. According to their site Microsoft also use their product?? It's expensive though.

Start GPS navigation application from code [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm building a Windows Mobile 6.1 application using .NET and C#.
I would like to purchase a GPS Navigation application or control so that I can add navigation functionality to my application. My software displays a list of customers. I would like users to be able to click an address and then navigate to this location using "turn by turn" navigation (similar to Tom Tom or Navman etc).
It's very time-consuming downloading demos and evaluating all the options. Has anyone been through this process and found a good solution?
After wasting time stuffing around with Google, Bing and others I came across these guys. Really excellent product! Send the address to their app and you're done. Simple :)
http://www.sygic.com/en/business

Social network directed graph library for .NET [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am on a project where I have multiple users of a portal and they are connected to other users of the portal. Now we are asked to draw a “Social Network” relationship graph to see the relationships. The constraint is that this graph has to be seen in the web browser.
The graph has to be something like:
Is there any C# library or component to draw this type of graphs? We have already checked these:
http://flare.prefuse.org/
http://www.yworks.com/en/products_yfiles_practicalinfo_gallery.html
.NET graph library around?
http://quickgraph.codeplex.com/
https://graphsharp.codeplex.com/
http://research.microsoft.com/en-us/downloads/f1303e46-965f-401a-87c3-34e1331d32c5/default.aspx
http://sourceforge.net/projects/zedgraph/
But I want to check if you already used some other and your feedback.
I've used Northwoods Go.NET for many years and it has been great.
I've used Microsoft chart it's fine and free !
Maybe you can take a look to graphviz too : http://www.graphviz.org/
It can be expensive but Tom Sawyer Visualization, ActiveX edition is a solution to the problem.
Another great product I just stumbled across with HTML5 (canvas/SVG) support:
http://www.mindfusion.eu/features-netdiagram.html
They also have a pure client-side JavaScript library also with HTML5 support:
http://www.mindfusion.eu/jsdiagram.html

Categories

Resources