All Projects → NGame1 → UWPGmaps.SDK

NGame1 / UWPGmaps.SDK

Licence: other
Unofficial Google Map SDK for Universal Windows Platform (UWP)

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to UWPGmaps.SDK

Ffmpeginteropx
FFmpeg decoding library for Windows 10 UWP Apps
Stars: ✭ 94 (+487.5%)
Mutual labels:  uwp, windows-10
Kanban Tasker
A simple kanban board for Windows 10 Universal Windows Platform (UWP) written to manage tasks and create a simple and easy workflow for each board
Stars: ✭ 140 (+775%)
Mutual labels:  uwp, windows-10
Metro For Discord
Make your Discord client look like a UWP app.
Stars: ✭ 109 (+581.25%)
Mutual labels:  uwp, windows-10
Win10 Explorer
A new windows 10 file explorer
Stars: ✭ 58 (+262.5%)
Mutual labels:  uwp, windows-10
Character Map Uwp
A modern, native UWP replacement for the Win32 Character Map and Windows Font Viewer with flawless high DPI and touch support.
Stars: ✭ 228 (+1325%)
Mutual labels:  uwp, windows-10
Files
A modern file manager that pushes the boundaries of the platform.
Stars: ✭ 15,198 (+94887.5%)
Mutual labels:  uwp, windows-10
Vanarsdel
VanArsdel Application UWP Sample
Stars: ✭ 126 (+687.5%)
Mutual labels:  uwp, windows-10
Gank.uwp
http://gank.io 第三方客户端UWP版
Stars: ✭ 41 (+156.25%)
Mutual labels:  uwp, windows-10
Caliburn.micro
A small, yet powerful framework, designed for building applications across all XAML platforms. Its strong support for MV* patterns will enable you to build your solution quickly, without the need to sacrifice code quality or testability.
Stars: ✭ 2,404 (+14925%)
Mutual labels:  uwp, windows-10
Windowstemplatestudio
Windows Template Studio quickly builds a UWP app, using a wizard-based UI to turn your needs into a foundation of Windows 10 patterns and best practices.
Stars: ✭ 2,089 (+12956.25%)
Mutual labels:  uwp, windows-10
Ui For Uwp
This repo contains the source code for Telerik UI for Universal Windows Platform (UWP), which includes 20+ UI controls for developers building UWP applications.
Stars: ✭ 1,077 (+6631.25%)
Mutual labels:  uwp, windows-10
Quarrel
A UWP discord client
Stars: ✭ 238 (+1387.5%)
Mutual labels:  uwp, windows-10
Uwp App Launcher Mobile
[Open Source] It's like the iOS and Android Home Screens but for Windows 10 (Phones).
Stars: ✭ 47 (+193.75%)
Mutual labels:  uwp, windows-10
Signal Windows
Unofficial Signal Private Messenger for Windows
Stars: ✭ 83 (+418.75%)
Mutual labels:  uwp, windows-10
Dawnplayer
A FLV playback library for Windows 10 UWP.
Stars: ✭ 46 (+187.5%)
Mutual labels:  uwp, windows-10
Cimbalino Toolkit
☕️ Cimbalino Toolkit
Stars: ✭ 117 (+631.25%)
Mutual labels:  uwp, windows-10
Mvvmlight
The main purpose of the toolkit is to accelerate the creation and development of MVVM applications in Xamarin.Android, Xamarin.iOS, Xamarin.Forms, Windows 10 UWP, Windows Presentation Foundation (WPF), Silverlight, Windows Phone.
Stars: ✭ 973 (+5981.25%)
Mutual labels:  uwp, windows-10
Win10bloatremover
Configurable CLI tool to easily and aggressively debloat and tweak Windows 10 by removing preinstalled UWP apps, services and more. Originally based on the W10 de-botnet guide made by @adolfintel.
Stars: ✭ 37 (+131.25%)
Mutual labels:  uwp, windows-10
Codehub
A UWP GitHub Client
Stars: ✭ 162 (+912.5%)
Mutual labels:  uwp, windows-10
Control Uwp
🌚🌓Alternative Control Panel for Windows 10
Stars: ✭ 237 (+1381.25%)
Mutual labels:  uwp, windows-10

UWPGmaps.SDK

Unofficial Google Map SDK for Universal Windows Platform (UWP)

What is supported

Offline Maps Downloading

Finding routes and directions

Geocoding and reverse-Geocoding

Photo helper (Convert Photo references to URI)

Place Helper (Add / Delete / TextSearch / Nearby Search / Place Auto Complete)

Tile API Helper (Premium APIKey needed)

Related Links

SDK NuGet package

How to use

This class library and also NuGet package (V1.5.0 and higher) are really easy to use .

Let's find a place address using it's Latitude and Longitude :

var Address = await GMapsUWP.GeoCoding.GeocodeHelper.GetAddress(GEOPOINT_OF_A_LOCATION);

OK Now you have Address of the mentioned place.

Let's get Directions between two points and show it on map :

var Directions = await GMapsUWP.Directions.DirectionsHelper.GetDirections(origin_BasicGeoposition, Destination_BasicGeoposition);

var DirectionsPolyline = GMapsUWP.Directions.DirectionsHelper.GetDirectionAsRoute(Directions, Color_Of_Result_PolyLine);

Map.MapElements.Add(DirectionsPolyline);

In this code Map is an instance of MapControl.

Be sure using Google Maps API can't be easier :)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].