# Geocoder
Module
## Members
- [Result](/result.md)
## Methods
| Name | Parameters | Return Type | Description |
| --- | :---: | :---: | --- |
| FromAddress | address as String | GraffitiMap.Geocoder.Result | (None) |
## Properties
| Name | Type | Default Value | Description |
| --- | :---: | :---: | --- |
| APIKey | String | (None) | (None) |
## Notes
### Google API
In order for the Geocoder to function, your API Key credentials must support the Geocoder API. For more information see this help document from Google.
## Examples
### Decode A Target City
```
GraffitiMap.Geocoder.APIKey = "..."
var newYork as GraffitiMap.Geocoder.Result = GraffitiMap.Geocoder.FromAddress( "New York, NY" )
```