Represents a point on the map.

💡 Coordinates travel as strings, not numbers.


Fields

Field Type Required Description
latitude String Yes Latitude of the point.
longitude String Yes Longitude of the point.
name String Optional Name of the place — venue, city, landmark.
details String Optional Anything more you want to show with it.

Example

{
  "location": {
    "latitude": "40.712776",
    "longitude": "-74.005974",
    "name": "New York City",
    "details": "Manhattan"
  }
}