Skip to content

Unofficial Google Map client for Universal Windows Platform

Notifications You must be signed in to change notification settings

pohapada/UWPGmaps

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UWPGmaps

Unofficial Google Map client for Universal Windows Platform

Telegram Messenger Insiders Group

GMaps Class Library

NuGet Library to work with Google Map APIs will be available soon too.

What is supported in project till now

-Show and Download Google Maps Tiles in UWP map control

-Offline map download (+Backup/Restore)

-Find directions and navigation

-Voice Navigation

-GeoCoding (Converting latitude and longitude to address)

-Reverse GeoCoding (Converting Address to latitude and longitude)

-Search (Nearby / Text / Place Auto Complete)

-Place Helper

-Save Favorite places (+Sync between devices)

Building Solution

Right click on the solution file in Visual Studio solution explorer and add a new Class called AppCore.cs

write this code in the class and save it .

public class AppCore
{
    public static string GoogleMapRequestsLanguage { get; private set; }
    public static string GoogleMapAPIKey { get; private set; }
    public static string HttpUserAgent { get; private set; }
    static AppCore()
    {
        HttpUserAgent = "WindowsUniversalGoogleMapsV2ALPHA";
        GoogleMapAPIKey = "Your GoogleMap API Key";
        GoogleMapRequestsLanguage = "en-US";
    }
}

About

Unofficial Google Map client for Universal Windows Platform

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%