gtfs-to-html 2.9.15 → 2.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config-sample.json +0 -1
- package/dist/app/index.js +2 -1
- package/dist/app/index.js.map +1 -1
- package/dist/bin/gtfs-to-html.js +2 -1
- package/dist/bin/gtfs-to-html.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/views/default/css/overview_styles.css +7 -7
- package/views/default/css/timetable_styles.css +14 -14
- package/views/default/formatting_functions.pug +2 -1
- package/views/default/js/system-map.js +83 -25
- package/views/default/js/timetable-map.js +50 -28
- package/views/default/overview.pug +3 -4
- package/views/default/overview_full.pug +4 -4
- package/views/default/timetablepage.pug +1 -1
- package/views/default/timetablepage_full.pug +2 -4
package/dist/bin/gtfs-to-html.js
CHANGED
|
@@ -331,7 +331,7 @@ function formatTripNameForCSV(trip, timetable) {
|
|
|
331
331
|
}
|
|
332
332
|
|
|
333
333
|
// package.json
|
|
334
|
-
var version = "2.
|
|
334
|
+
var version = "2.10.0";
|
|
335
335
|
|
|
336
336
|
// src/lib/utils.ts
|
|
337
337
|
var isTimepoint = (stoptime) => {
|
|
@@ -1285,6 +1285,7 @@ function setDefaultConfig(initialConfig) {
|
|
|
1285
1285
|
interpolatedStopText: "Estimated time of arrival",
|
|
1286
1286
|
gtfsToHtmlVersion: version,
|
|
1287
1287
|
linkStopUrls: false,
|
|
1288
|
+
mapStyleUrl: "https://tiles.openfreemap.org/styles/liberty",
|
|
1288
1289
|
menuType: "jump",
|
|
1289
1290
|
noDropoffSymbol: "\u2021",
|
|
1290
1291
|
noDropoffText: "No drop off available",
|