![]() |
VOOZH | about |
dotnet add package GoogleMapsClient --version 1.1.15
NuGet\Install-Package GoogleMapsClient -Version 1.1.15
<PackageReference Include="GoogleMapsClient" Version="1.1.15" />
<PackageVersion Include="GoogleMapsClient" Version="1.1.15" />Directory.Packages.props
<PackageReference Include="GoogleMapsClient" />Project file
paket add GoogleMapsClient --version 1.1.15
#r "nuget: GoogleMapsClient, 1.1.15"
#:package GoogleMapsClient@1.1.15
#addin nuget:?package=GoogleMapsClient&version=1.1.15Install as a Cake Addin
#tool nuget:?package=GoogleMapsClient&version=1.1.15Install as a Cake Tool
I needed a simple way to parse addresses and resolve coordinates to an address. Plug in a Google Maps API key and you're all set.
Special thanks to @jorgeaponte and the community for helping improve this library!
First things first - do you need help or have feedback? File an issue here!
using GoogleMapsClient;
using (GoogleMaps client = new GoogleMaps("[your API key here]"))
{
GoogleMapsAddress addr;
GoogleMapsTimestamp ts;
// Get details about coordinates
addr = await client.QueryCoordinatesAsync(37.4220578, -122.0840897);
// Get details about an address
addr = await client.QueryAddressAsync("1600 Amphitheatre Pkwy Mountain View CA");
// Get timestamp for coordinates
ts = await client.LocalTimestampAsync(37.4220578, -122.0840897, DateTime.Now);
// Get timestamp for address
ts = await client.LocalTimestampAsync("1600 Amphitheatre Pkwy Mountain View CA", DateTime.Now);
}
Refer to CHANGELOG.md for version history.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Framework | net462 net462 is compatible. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 is compatible. net48 net48 is compatible. net481 net481 was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.1.15 | 1,132 | 1/12/2026 |
| 1.1.14 | 4,991 | 11/27/2023 |
| 1.1.13 | 225 | 11/25/2023 |
| 1.1.12 | 415 | 10/21/2023 |
| 1.1.10 | 270 | 10/21/2023 |
| 1.1.9 | 279 | 10/20/2023 |
| 1.1.8 | 255 | 10/20/2023 |
| 1.1.7 | 303 | 10/20/2023 |
| 1.1.6 | 338 | 10/11/2023 |
| 1.1.5 | 280 | 10/6/2023 |
| 1.1.4 | 249 | 10/6/2023 |
| 1.1.3 | 248 | 10/6/2023 |
| 1.1.2 | 272 | 10/6/2023 |
| 1.1.1 | 255 | 10/6/2023 |
| 1.1.0 | 532 | 9/14/2023 |
| 1.0.3 | 309 | 9/14/2023 |
| 1.0.2 | 255 | 9/14/2023 |
| 1.0.1.1 | 15,117 | 11/12/2021 |
| 1.0.1 | 24,079 | 8/12/2020 |
| 1.0.0 | 734 | 8/12/2020 |
Dependency changes, retarget