Point: Difference between revisions

From Tygron Support wiki
Jump to navigation Jump to search
Maxim@tygron.com (talk | contribs)
Created page with "A point is the most basic geometric object: it has a location but no size (no length, width, or area). In GeoJSON, a point looks like this: <code>{ "type": "Point", "coordinates": [102.0, 0.5] }</code> {{article end |seealso= * MultiPolygon * Polygon * GeoJSON }}"
 
Maxim@tygron.com (talk | contribs)
No edit summary
Line 2: Line 2:


In GeoJSON, a point looks like this:
In GeoJSON, a point looks like this:
<code>{
<code>
  "type": "Point",
{
  "coordinates": [102.0, 0.5]
"type": "Point",
}</code>
"coordinates": [102.0, 0.5]
}
</code>


{{article end
{{article end

Revision as of 13:05, 15 July 2026

A point is the most basic geometric object: it has a location but no size (no length, width, or area).

In GeoJSON, a point looks like this: { "type": "Point", "coordinates": [102.0, 0.5] }