Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I have a Zip file contain all Open Street Maps tiles for specific region.
Is there any way to create a map using OSM tiles in universal windows apps?
You can use a CustomMapTileDataSource. For each requested tile the event handler BitmapRequested is called. In this handler you can pass any bitmap to the map.
In your case, you need to download the bitmaps beforehand and store it on the device. In the BitmapRequested handler you just deliver these bitmaps.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 9 days ago.
Improve this question
I would like to get webcam footage in C#. I do not need to display it, all I need is to be able to get information about each pixel captured by the webcam. I do not know what package would be best for this. It is preferable that I can install this using the NuGet package manager. I have tried OpenCVSharp however I couldn't get it to install properly. Please include a code example of how I would capture video and get pixel information.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
In my C# UWP app I'm trying to detect whether a devices has pen support or not to decide whether to show a button, but I can't find anything about it in the official documentation, do anyone know how to do this?
Have a look at Input: Device capabilities sample which provides an example.
Basically you use Windows.Devices.Input to loop through available devices (mouse, pointers etc) and decide if a pen / stylus is present.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have to create some small voice-controlled game (for windows and android).
No voice recognition is needed (yet), only voice volume is important.
So, the task can be reduced to creating a simple equalizer, which would get voice data from the microphone in real time.
Are there some Unity libraries for this (reading microphone stream and detecting current volume), or should I look for something external?
Thanks.
I'm pretty sure you can find the answer to your question on this thread.
Good luck!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Are there any good .net libraries / controls for playing youtube videos in a WPF application? I know I could use the WebBrowser control but wouldn't that display the whole page and not just the video? A control where I only have to supply a youtube URL would be best.
Have a look at this. The project is about creating Drag/Dropable items in WPF, but you can see that there's a video playing in one of the controls. You should be able to extract what you need from that.
http://www.codeproject.com/Articles/22952/WPF-Diagram-Designer-Part
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have the geocordinates of a trip and I would like to save the picture that display the path on a map.
Do you know an api or library that woud do that ?
You can use Static Map for that. The Google Static Maps API lets you embed a Google Maps image on your web page.From there, you can draw your path.