From 70d0ffbefdbfb9c710d446eef42c6b6cc2abcd05 Mon Sep 17 00:00:00 2001 From: Jaroslav Surala Date: Wed, 12 Jun 2019 22:35:47 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d108f41..e181316 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Blazor component for GoogleMap which allows to manipulate with GoogleMap just with C# language and no JS is required. ## IMPORTANT! -This is very very first prewview version and API it will increase and also documentation. +This is very very first preview version and API it will increase and also documentation. # Instalation [![NuGet Pre Release](https://img.shields.io/badge/nuget-0.0.1-orange.svg)](https://www.nuget.org/packages/Blazor.GoogleMap) @@ -11,9 +11,9 @@ This is very very first prewview version and API it will increase and also docum ```cs public void ConfigureServices(IServiceCollection services) { - services.AddGoogleMaps(options => + services.AddGoogleMaps(options => { - options.ApiKey = "Your Google Maps Api Key"; + options.ApiKey = "Your Google Maps Api Key"; }); } ``` From 524e087fa89fac44fdca67ef6423593aaf50c8ce Mon Sep 17 00:00:00 2001 From: Jaroslav Surala Date: Wed, 12 Jun 2019 22:36:40 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e181316..0596695 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Blazor component for GoogleMap which allows to manipulate with GoogleMap just wi This is very very first preview version and API it will increase and also documentation. # Instalation -[![NuGet Pre Release](https://img.shields.io/badge/nuget-0.0.1-orange.svg)](https://www.nuget.org/packages/Blazor.GoogleMap) +[![NuGet Pre Release](https://img.shields.io/badge/nuget-0.0.1-orange.svg)](https://www.nuget.org/packages/BlazorMap) # Setup ```cs