API
The API URL: https://tiles.indoorequal.org
TileJSON
The TileJSON endpoint describe the map data.
GET /
Query Parameters
key: the API Key
Example
https://tiles.indoorequal.org/?key=<insert your api key here>
Tiles
The tiles in the mvt format.
GET /tiles/<z>/<x>/<y>.pbf
URL Parameters
x: x coordinates
y: y coordinates
z: zoom
Query Parameters
key: the API Key
Example
https://tiles.indoorequal.org/tiles/17/112973/52690.pbf?key=<insert your api key here>
Get POI Detail
The Point Of Interest API allows to get indoor POI.
GET /poi/<type>:<id>
URL Parameters
type: the OSM object type
id: the OSM object id
Query Parameters
key: the API Key
Example
https://tiles.indoorequal.org/poi/way:777971859?key=<insert your api key here>
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
24.751462198,
59.433338064
]
},
"properties": {
"id": "way:777971859",
"name": "Pandora",
"name_en": "Pandora",
"name_de": "Pandora",
"tags": {
"name": "Pandora",
"shop": "jewelry",
"level": "0",
"indoor": "room",
"name_int": "Pandora",
"name:latin": "Pandora"
},
"class": "shop",
"subclass": "jewelry",
"layer": null,
"level": "0",
"indoor": 1
}
}