trash nothing
  1. Schemas
trash nothing
  • messages
    • List conversations
      GET
    • Mark all conversations as read
      PUT
    • Search conversations
      GET
    • Delete conversation
      DELETE
    • Archive conversation
      PUT
    • Block conversation
      PUT
    • Mark conversation as read
      PUT
    • List conversation messages
      GET
    • Reply to conversation
      POST
    • Report conversation
      POST
    • Unarchive conversation
      PUT
    • Unblock conversation
      PUT
  • misc
    • Send feedback
  • groups
    • Search groups
    • Retrieve multiple groups
    • Join groups
    • Retrieve a group
    • Submit group answers
    • Contact group moderators
    • Leave a group
  • photos
    • Create a photo
    • Retrieve multiple photos
    • Delete a photo
    • Rotate a photo
  • posts
    • List posts
    • Submit a post
    • List all posts
    • List all post changes
    • Retrieve client.js
    • Retrieve multiple posts
    • Search posts
    • Retrieve a post
    • Update a post
    • Delete a post bookmark
    • Bookmark a post
    • Retrieve post display data
    • Flag a post
    • Map a post
    • Promise an offer post
    • Reply to a post
    • Satisfy a post
    • Share a post
    • Unpromise an offer post
    • Withdraw a post
  • stories
    • List stories
    • Submit a story
    • Retrieve a story
    • Like a story
    • Unlike a story
    • Record story viewed
  • users
    • Retrieve current user
    • Update current user
    • List current users' email alerts
    • Create an email alert
    • Delete an email alert
    • Change email address
    • Set users' email address as not bouncing
    • List current users' groups
    • Update location
    • List current users' group notices
    • List current users' post locations
    • Save a post location for the current user
    • List current users' posts
    • Search current users' posts
    • Set a profile image
    • List current users' profile images
    • Resend account verification email
    • Send password reset email
    • Report a user
    • Retrieve a user
    • Retrieve user display info
    • Submit feedback on a user
    • List posts by a user
    • Search posts by a user
    • Retrieve a users' profile image
  • Schemas
    • Schemas
      • Alert
      • BoundingBox
      • Conversation
      • CurrentUser
      • Feedback
      • GeolocateBounds
      • Group
      • GroupNotice
      • Message
      • Photo
      • PhotoResult
      • Post
      • PostSearchResult
      • Story
      • User
  1. Schemas

GeolocateBounds

Two bounding boxes that make using Google Maps' geocoder easier.

The default bounding box defines the area in which the post is probably located. This is useful for providing a bounds to Google Maps geocoder.

The limit bounding box is a larger bounding box that contains the default bounding box. This is useful for discarding Google Maps geocoding results that are outside of this bounding box.

{
    "default": {
        "northeast": {
            "latitude": 52.8293255665,
            "longitude": -0.600956182
        },
        "southwest": {
            "latitude": 51.0025285305,
            "longitude": -3.5323240284
        }
    },
    "limit": {
        "northeast": {
            "latitude": 52.8293255665,
            "longitude": -0.600956182
        },
        "southwest": {
            "latitude": 51.0025285305,
            "longitude": -3.5323240284
        }
    }
}
Built with