user6573749
user6573749

Reputation:

How can I use Google Maps in Xamarin.iOS project

I want to use Google Maps in my Xamarin.iOS project, I couldn't find any package in NuGet store that could help to implement Google Maps in my project.

I want to get my current location and show customized pins on locations that I get from the server.

Upvotes: 6

Views: 6771

Answers (1)

SushiHangover
SushiHangover

Reputation: 74209

Nuget package Xamarin.Google.iOS.Maps is a Xamarin.iOS binding library for "Google Maps SDK for iOS".

PM> Install-Package Xamarin.Google.iOS.Maps -Version 2.1.0.2

Google's Maps SDK for iOS documentation:

Re: https://developers.google.com/maps/documentation/ios-sdk/

C# Source with samples:

Re: https://github.com/xamarin/GoogleApisForiOSComponents/tree/master/source/Google/Maps

Upvotes: 12

Related Questions