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/config-sample.json
CHANGED
package/dist/app/index.js
CHANGED
|
@@ -375,7 +375,7 @@ function getAgencyGeoJSON(config2) {
|
|
|
375
375
|
}
|
|
376
376
|
|
|
377
377
|
// package.json
|
|
378
|
-
var version = "2.
|
|
378
|
+
var version = "2.10.0";
|
|
379
379
|
|
|
380
380
|
// src/lib/utils.ts
|
|
381
381
|
var isTimepoint = (stoptime) => {
|
|
@@ -1329,6 +1329,7 @@ function setDefaultConfig(initialConfig) {
|
|
|
1329
1329
|
interpolatedStopText: "Estimated time of arrival",
|
|
1330
1330
|
gtfsToHtmlVersion: version,
|
|
1331
1331
|
linkStopUrls: false,
|
|
1332
|
+
mapStyleUrl: "https://tiles.openfreemap.org/styles/liberty",
|
|
1332
1333
|
menuType: "jump",
|
|
1333
1334
|
noDropoffSymbol: "\u2021",
|
|
1334
1335
|
noDropoffText: "No drop off available",
|