Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Few typos fixed from documentation #12

Merged
merged 1 commit into from Mar 31, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions EXTENSIONS.md
Expand Up @@ -68,7 +68,7 @@ By including this extension it is possible to do very easily geocoding and rever


#### Geocode #### Geocode


$.JHERE.geocode('Berlin, Germany', $.jHERE.geocode('Berlin, Germany',
function(position){ function(position){
//Do stuff with position //Do stuff with position
}, },
Expand All @@ -83,11 +83,11 @@ however note that it is a custom implementation that only supports the `done` me


#### Reverse Geocode #### Reverse Geocode


$.JHERE.reverseGeocode({latitude: 52.5, longitude: 13.3}, $.jHERE.reverseGeocode({latitude: 52.5, longitude: 13.3},
function(address){ function(address){
//Do stuff with address //Do stuff with address
}, },
function(){/*error*/});` function(){/*error*/});


jHERE exposes the possibility of reverse geocoding a position jHERE exposes the possibility of reverse geocoding a position
into an address. This call is asynchronous into an address. This call is asynchronous
Expand Down