Web terrain: Difference between revisions
Jump to navigation
Jump to search
Created page with "API Endpoint: web/terrain.{format} ===GET terrain.{format}=== API Endpoint: web/terrain.{format} '''Parameters:''' {|class=wikitable !Name !Location !Type !Default value |- | format | Path | String | |- | bbox | Query | String | |- | crs | Query | String | EPSG:3857 |- | id | Query | Integer | |- | maptype | Query | Map Type | MAQUETTE |- | width | Query | int | 256 |- | height | Query | int | 256 |- | offset | Query | float | 0 |- | worlddatum | Query | boolean..." |
No edit summary |
||
| (15 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
API | API Base URL: web/terrain | ||
===GET | ===GET txt=== | ||
API Endpoint: web/terrain. | API Endpoint: web/terrain.txt | ||
'''Parameters:''' | '''Parameters:''' | ||
| Line 78: | Line 78: | ||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/web/terrain.txt?worlddatum=true&token=WEB_TOKEN</syntaxhighlight> | <syntaxhighlight lang="text" copy>https://engine.tygron.com/web/terrain.txt?worlddatum=true&token=WEB_TOKEN</syntaxhighlight> | ||
===GET txt=== | |||
API Endpoint: web/terrain/{z}/{x}/{y}.txt | |||
''' | '''Parameters:''' | ||
{|class=wikitable | |||
!Name | |||
!Location | |||
!Type | |||
!Default value | |||
|- | |||
| format | |||
| Path | |||
| String | |||
| | |||
|- | |||
| z | |||
| Path | |||
| int | |||
| | |||
|- | |||
| x | |||
| Path | |||
| int | |||
| | |||
|- | |||
| y | |||
| Path | |||
| int | |||
| | |||
|- | |||
| v | |||
| Query | |||
| String | |||
| | |||
|- | |||
| width | |||
| Query | |||
| int | |||
| 256 | |||
|- | |||
| height | |||
| Query | |||
| int | |||
| 256 | |||
|- | |||
| offset | |||
| Query | |||
| float | |||
| 0 | |||
|- | |||
| maptype | |||
| Query | |||
| [[Map Type]] | |||
| MAQUETTE | |||
|- | |||
| worlddatum | |||
| Query | |||
| boolean | |||
| false | |||
|- | |||
| decimation | |||
| Query | |||
| int | |||
| 16 | |||
|} | |||
''' | ===='''Examples==== | ||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/web/terrain. | '''Query Tiling endpoint: /terrain/{z}/{x}/{y}.txt''': | ||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/web/terrain/3/2/1.txt?token=WEB_TOKEN</syntaxhighlight> | |||
===GET bin=== | |||
API Endpoint: web/terrain.bin | |||
''' | '''Parameters:''' | ||
{|class=wikitable | |||
!Name | |||
!Location | |||
!Type | |||
!Default value | |||
|- | |||
| format | |||
| Path | |||
| String | |||
| | |||
|- | |||
| bbox | |||
| Query | |||
| String | |||
| | |||
|- | |||
| crs | |||
| Query | |||
| String | |||
| EPSG:3857 | |||
|- | |||
| id | |||
| Query | |||
| Integer | |||
| | |||
|- | |||
| maptype | |||
| Query | |||
| [[Map Type]] | |||
| MAQUETTE | |||
|- | |||
| width | |||
| Query | |||
| int | |||
| 256 | |||
|- | |||
| height | |||
| Query | |||
| int | |||
| 256 | |||
|- | |||
| offset | |||
| Query | |||
| float | |||
| 0 | |||
|- | |||
| worlddatum | |||
| Query | |||
| boolean | |||
| false | |||
|- | |||
| decimation | |||
| Query | |||
| int | |||
| 16 | |||
|} | |||
===='''Examples==== | |||
'''Basic Query''': | '''Basic Query''': | ||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/web/terrain.bin?&token=WEB_TOKEN</syntaxhighlight> | <syntaxhighlight lang="text" copy>https://engine.tygron.com/web/terrain.bin?&token=WEB_TOKEN</syntaxhighlight> | ||
| Line 107: | Line 224: | ||
'''Query with World instead of CRS Datum''': | '''Query with World instead of CRS Datum''': | ||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/web/terrain.bin?worlddatum=true&token=WEB_TOKEN</syntaxhighlight> | <syntaxhighlight lang="text" copy>https://engine.tygron.com/web/terrain.bin?worlddatum=true&token=WEB_TOKEN</syntaxhighlight> | ||
===GET bin=== | |||
API Endpoint: web/terrain/{z}/{x}/{y}.bin | |||
'''Parameters:''' | |||
{|class=wikitable | |||
!Name | |||
!Location | |||
!Type | |||
!Default value | |||
|- | |||
| format | |||
| Path | |||
| String | |||
| | |||
|- | |||
| z | |||
| Path | |||
| int | |||
| | |||
|- | |||
| x | |||
| Path | |||
| int | |||
| | |||
|- | |||
| y | |||
| Path | |||
| int | |||
| | |||
|- | |||
| v | |||
| Query | |||
| String | |||
| | |||
|- | |||
| width | |||
| Query | |||
| int | |||
| 256 | |||
|- | |||
| height | |||
| Query | |||
| int | |||
| 256 | |||
|- | |||
| offset | |||
| Query | |||
| float | |||
| 0 | |||
|- | |||
| maptype | |||
| Query | |||
| [[Map Type]] | |||
| MAQUETTE | |||
|- | |||
| worlddatum | |||
| Query | |||
| boolean | |||
| false | |||
|- | |||
| decimation | |||
| Query | |||
| int | |||
| 16 | |||
|} | |||
===='''Examples==== | |||
'''Query Tiling endpoint: /terrain/{z}/{x}/{y}.bin''': | |||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/web/terrain/3/2/1.bin?token=WEB_TOKEN</syntaxhighlight> | |||
{{article end | {{article end | ||
Latest revision as of 10:01, 13 July 2026
API Base URL: web/terrain
GET txt
API Endpoint: web/terrain.txt
Parameters:
| Name | Location | Type | Default value |
|---|---|---|---|
| format | Path | String | |
| bbox | Query | String | |
| crs | Query | String | EPSG:3857 |
| id | Query | Integer | |
| maptype | Query | Map Type | MAQUETTE |
| width | Query | int | 256 |
| height | Query | int | 256 |
| offset | Query | float | 0 |
| worlddatum | Query | boolean | false |
| decimation | Query | int | 16 |
Examples
Basic Query:
https://engine.tygron.com/web/terrain.txt?&token=WEB_TOKENQuery with BBOX (EPSG:3857):
https://engine.tygron.com/web/terrain.txt?&crs=3857&bbox=658636.7618515313,6798649.869141218,659042.7958749933,6799055.882798785&token=WEB_TOKENQuery with width=16 and height=16:
https://engine.tygron.com/web/terrain.txt?width=16&height=16&token=WEB_TOKENQuery for MapType: CURRENT:
https://engine.tygron.com/web/terrain.txt?maptype=CURRENT&token=WEB_TOKENQuery with World instead of CRS Datum:
https://engine.tygron.com/web/terrain.txt?worlddatum=true&token=WEB_TOKENGET txt
API Endpoint: web/terrain/{z}/{x}/{y}.txt
Parameters:
| Name | Location | Type | Default value |
|---|---|---|---|
| format | Path | String | |
| z | Path | int | |
| x | Path | int | |
| y | Path | int | |
| v | Query | String | |
| width | Query | int | 256 |
| height | Query | int | 256 |
| offset | Query | float | 0 |
| maptype | Query | Map Type | MAQUETTE |
| worlddatum | Query | boolean | false |
| decimation | Query | int | 16 |
Examples
Query Tiling endpoint: /terrain/{z}/{x}/{y}.txt:
https://engine.tygron.com/web/terrain/3/2/1.txt?token=WEB_TOKENGET bin
API Endpoint: web/terrain.bin
Parameters:
| Name | Location | Type | Default value |
|---|---|---|---|
| format | Path | String | |
| bbox | Query | String | |
| crs | Query | String | EPSG:3857 |
| id | Query | Integer | |
| maptype | Query | Map Type | MAQUETTE |
| width | Query | int | 256 |
| height | Query | int | 256 |
| offset | Query | float | 0 |
| worlddatum | Query | boolean | false |
| decimation | Query | int | 16 |
Examples
Basic Query:
https://engine.tygron.com/web/terrain.bin?&token=WEB_TOKENQuery with BBOX (EPSG:3857):
https://engine.tygron.com/web/terrain.bin?&crs=3857&bbox=658636.7618515313,6798649.869141218,659042.7958749933,6799055.882798785&token=WEB_TOKENQuery with width=16 and height=16:
https://engine.tygron.com/web/terrain.bin?width=16&height=16&token=WEB_TOKENQuery for MapType: CURRENT:
https://engine.tygron.com/web/terrain.bin?maptype=CURRENT&token=WEB_TOKENQuery with World instead of CRS Datum:
https://engine.tygron.com/web/terrain.bin?worlddatum=true&token=WEB_TOKENGET bin
API Endpoint: web/terrain/{z}/{x}/{y}.bin
Parameters:
| Name | Location | Type | Default value |
|---|---|---|---|
| format | Path | String | |
| z | Path | int | |
| x | Path | int | |
| y | Path | int | |
| v | Query | String | |
| width | Query | int | 256 |
| height | Query | int | 256 |
| offset | Query | float | 0 |
| maptype | Query | Map Type | MAQUETTE |
| worlddatum | Query | boolean | false |
| decimation | Query | int | 16 |
Examples
Query Tiling endpoint: /terrain/{z}/{x}/{y}.bin:
https://engine.tygron.com/web/terrain/3/2/1.bin?token=WEB_TOKEN