mirror of https://github.com/tidwall/tile38.git
Update README.md
This commit is contained in:
parent
d9c9de654f
commit
3756d9da0d
|
@ -24,7 +24,7 @@ Tile38 is an open source (MIT licensed), in-memory geolocation data store, spati
|
||||||
- Spatial index with [search](#searching) methods such as Nearby, Within, and Intersects.
|
- Spatial index with [search](#searching) methods such as Nearby, Within, and Intersects.
|
||||||
- Realtime [geofencing](#geofencing) through [webhooks](https://tile38.com/commands/sethook) or [pub/sub channels](#pubsub-channels).
|
- Realtime [geofencing](#geofencing) through [webhooks](https://tile38.com/commands/sethook) or [pub/sub channels](#pubsub-channels).
|
||||||
- Object types of [lat/lon](#latlon-point), [bbox](#bounding-box), [Geohash](#geohash), [GeoJSON](#geojson), [QuadKey](#quadkey), and [XYZ tile](#xyz-tile).
|
- Object types of [lat/lon](#latlon-point), [bbox](#bounding-box), [Geohash](#geohash), [GeoJSON](#geojson), [QuadKey](#quadkey), and [XYZ tile](#xyz-tile).
|
||||||
- Support for lots of [Clients Libraries](#client-libraries) written in many different languages.
|
- Support for lots of [Clients Libraries](#tile38-client-libraries) written in many different languages.
|
||||||
- Variety of protocols, including [http](#http) (curl), [websockets](#websockets), [telnet](#telnet), and the [Redis RESP](https://redis.io/topics/protocol).
|
- Variety of protocols, including [http](#http) (curl), [websockets](#websockets), [telnet](#telnet), and the [Redis RESP](https://redis.io/topics/protocol).
|
||||||
- Server responses are [RESP](https://redis.io/topics/protocol) or [JSON](https://www.json.org).
|
- Server responses are [RESP](https://redis.io/topics/protocol) or [JSON](https://www.json.org).
|
||||||
- Full [command line interface](#cli).
|
- Full [command line interface](#cli).
|
||||||
|
@ -278,7 +278,7 @@ A QuadKey used the same coordinate system as an XYZ tile except that the string
|
||||||
|
|
||||||
## Network protocols
|
## Network protocols
|
||||||
|
|
||||||
It's recommended to use a [client library](#client-libraries) or the [Tile38 CLI](#running), but there are times when only HTTP is available or when you need to test from a remote terminal. In those cases we provide an HTTP and telnet options.
|
It's recommended to use a [client library](#tile38-client-libraries) or the [Tile38 CLI](#running), but there are times when only HTTP is available or when you need to test from a remote terminal. In those cases we provide an HTTP and telnet options.
|
||||||
|
|
||||||
#### HTTP
|
#### HTTP
|
||||||
One of the simplest ways to call a tile38 command is to use HTTP. From the command line you can use [curl](https://curl.haxx.se/). For example:
|
One of the simplest ways to call a tile38 command is to use HTTP. From the command line you can use [curl](https://curl.haxx.se/). For example:
|
||||||
|
|
Loading…
Reference in New Issue