Skip to content

Commit

Permalink
format readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Felipe Oliveira committed Mar 9, 2011
1 parent 8a8f3e0 commit c70baed
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
GeoNode
by Felipe Oliveira
March 2011
http://geeks.aretotally.in/projects/geonode
http://twitter.com/_felipera
# GeoNode
# by Felipe Oliveira
# March 2011
# [http://geeks.aretotally.in/projects/geonode] (http://geeks.aretotally.in/projects/geonode)
# [http://twitter.com/_felipera] (http://twitter.com/_felipera)

GeoNode adds geocoding capabilities to Node.js using Google's Geocode API - Geo Spatial is coming out soon.
GeoNode adds very basic, but simple to use, geocoding capabilities to Node.js using Google's Geocode API - Geo Spatial is coming out soon.

Usage:
## Usage

var geonode = require('../lib/geonode');

var address = '885 6th Ave #15D New York, NY 10001';
var sensor = false;
geonode.geocoder(geonode.google, address, sensor, function(formattedAddress, latitude, longitude) {
console.log("Formatted Address: " + formattedAddress);
console.log("Latitude: " + latitude);
console.log("Longitude: " + longitude);
});
var geonode = require('../lib/geonode');
var address = '885 6th Ave #15D New York, NY 10001';
var sensor = false;
geonode.geocoder(geonode.google, address, sensor, function(formattedAddress, latitude, longitude) {
console.log("Formatted Address: " + formattedAddress);
console.log("Latitude: " + latitude);
console.log("Longitude: " + longitude);
});

0 comments on commit c70baed

Please sign in to comment.