Skip to content

A .NET library which utilizes Google's Geocoding API to geocode street addresses

Notifications You must be signed in to change notification settings

bmontgomery/Geocoder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Geocoder

Geocoder is a simple .NET library which utilizes Google's Geolocation API to geocode street addresses.

Installation via NuGet

Install-Package Geocoder

Example (C#)

var geocoder = new Geocoder.GeocodeService();

// geocode the location of the White House
var whiteHouseLocation = geocoder.GeocodeLocation("1600 Pennsylvania Ave NW Washington, DC 20500");

Console.WriteLine("Location: Latitude: " + whiteHouseLocation.Latitude.ToString() + "; Longitude: " + whiteHouseLocation.Longitude.ToString());

About

A .NET library which utilizes Google's Geocoding API to geocode street addresses

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages