Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/openplannerteam/itinero-io-osm-tiles
An IO project for itinero 1 to consume routable tiles.
https://github.com/openplannerteam/itinero-io-osm-tiles
openstreetmap routeable-tiles routing tiles
Last synced: about 10 hours ago
JSON representation
An IO project for itinero 1 to consume routable tiles.
- Host: GitHub
- URL: https://github.com/openplannerteam/itinero-io-osm-tiles
- Owner: openplannerteam
- Created: 2018-11-09T17:23:52.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T04:06:19.000Z (almost 2 years ago)
- Last Synced: 2023-03-02T09:51:24.349Z (over 1 year ago)
- Topics: openstreetmap, routeable-tiles, routing, tiles
- Language: C#
- Size: 1010 KB
- Stars: 0
- Watchers: 6
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# itinero-io-osm-tiles
An IO project for itinero 1 to consume routable tiles.
## Usage
```
// create a routerdb.
var routerDb = new RouterDb();
// specify what vehicles it should support.
routerDb.AddSupportedVehicle(Itinero.Osm.Vehicles.Vehicle.Car);
// start loading tiles.
routerDb.LoadOsmDataFromTiles(new Box(51.179773424875634f, 4.5366668701171875f,
51.29885215199866f, 4.8017120361328125f));
// routing code here!
```This results in this network begin loaded:
![usage](docs/usage1.png)