Skip to content

Instantly share code, notes, and snippets.

@mongolab-org
Created August 18, 2014 05:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mongolab-org/35438ec5b762e0392ea6 to your computer and use it in GitHub Desktop.
Save mongolab-org/35438ec5b762e0392ea6 to your computer and use it in GitHub Desktop.
// Point representation of Timmy's Taco Truck
{
name : "Timmy's Taco Truck",
loc : {
type : "Point",
coordinates : [ 37.7577 , -122.4376 ]
}
}
// Polygon representation (Square) of a Food Truck Park
{
name: "Truckapalooza Square",
loc : {
type : "Polygon",
coordinates : [ [ [ 0 , 0 ] , [ 0 , 1 ] , [ 1 , 1 ] , [ 1 , 0 ] , [ 0 , 0 ] ] ]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment