Skip to content

Commit

Permalink
fixed small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
itzmeanjan committed Apr 12, 2019
1 parent afb3a2b commit 368f0bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tms/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const express = require('express');
const app = express(); // express app's instance gets created here
const join = require('path').join;
const exists = require('fs').exists; // only importing `exists` method
let tile_path = '/home/anjan/Documents/my_programs/still_working/python_codes/mapZ/tiles/';
let tile_path = '/path-to-tile/';
app.get('/tile/:zoom/:row/:col.png', (req, res) => {
// this is the path we're listening to
// where zoom, request param, gives us zoom level for that tile requested
Expand Down

0 comments on commit 368f0bb

Please sign in to comment.