SkillAgentSearch skills...

GeocodeSharp

An async .NET client for the Google geocode API

Install / Use

/learn @bcuff/GeocodeSharp
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

GeocodeSharp

An async .NET client for the Google geocode API

The object model closely follows the model documented here.

##Example

using System;
using System.Linq;
using System.Threading.Tasks;
using GeocodeSharp.Google;

var address = "21 Henrietta St, Bristol, UK";
var client = new GeocodeClient();
var response = await client.GeocodeAddress(address);
if (response.Status == GeocodeStatus.Ok)
{
    var firstResult = response.Results.First();
    var location = firstResult.Geometry.Location;
    var lat = location.Latitude;
    var lng = location.Longitude;
    // ...
}
View on GitHub
GitHub Stars11
CategoryDevelopment
Updated9mo ago
Forks19

Languages

C#

Security Score

87/100

Audited on Jun 16, 2025

No findings