/Xam.Plugin.SimpleStaticMap

Just a simple static map control based on the Static API of Google Maps

Primary LanguageC#MIT LicenseMIT

Nuget Nuget

Icon

Xam.Plugin.SimpleStaticMap

Just a nice and simple static map for your Xamarin Forms project. It uses the static api from GoogleMaps to show a static map image;

Setup

!!Install into your .net standard Forms project. !!

Usage

You can now use the StaticMap To generate a nice looking image of a map with pins and polylines


    <controls:StaticMap
            x:Name="map"
            ApiKey="SET YOUR APIKEY HERE"
            Aspect="AspectFill"
            HorizontalOptions="FillAndExpand"
            IsVisible="true"
            Pins="{Binding Pins}"
            Polylines="{Binding Polylines}"
            VerticalOptions="FillAndExpand"
            Zoom="6" />

(see sample project for more info)