Proxy
Proxy endpoints
Proxy Loom tile service
Path Parameters
serviceRequiredstringzRequiredstringxRequiredstringyRequiredstringResponse Body
curl -X GET "https://example.com/proxy/loom/string/geo/string/string/string"fetch("https://example.com/proxy/loom/string/geo/string/string/string")package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://example.com/proxy/loom/string/geo/string/string/string"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}import requests
url = "https://example.com/proxy/loom/string/geo/string/string/string"
response = requests.request("GET", url)
print(response.text)Empty
Proxy Mapillary vector tiles
Path Parameters
datasetRequiredstringversionRequiredstringzRequiredstringxRequiredstringyRequiredstringResponse Body
curl -X GET "https://example.com/proxy/mapillary/string/string/string/string/string"fetch("https://example.com/proxy/mapillary/string/string/string/string/string")package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://example.com/proxy/mapillary/string/string/string/string/string"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}import requests
url = "https://example.com/proxy/mapillary/string/string/string/string/string"
response = requests.request("GET", url)
print(response.text)Empty
Proxy Transitland route tiles
Path Parameters
zRequiredstringxRequiredstringyRequiredstringResponse Body
curl -X GET "https://example.com/proxy/transitland/routes/string/string/string"fetch("https://example.com/proxy/transitland/routes/string/string/string")package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://example.com/proxy/transitland/routes/string/string/string"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}import requests
url = "https://example.com/proxy/transitland/routes/string/string/string"
response = requests.request("GET", url)
print(response.text)Empty
Proxy Transitland stop tiles
Path Parameters
zRequiredstringxRequiredstringyRequiredstringResponse Body
curl -X GET "https://example.com/proxy/transitland/stops/string/string/string"fetch("https://example.com/proxy/transitland/stops/string/string/string")package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://example.com/proxy/transitland/stops/string/string/string"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}import requests
url = "https://example.com/proxy/transitland/stops/string/string/string"
response = requests.request("GET", url)
print(response.text)Empty