├── src
├── vite-env.d.ts
├── components
│ ├── maptrip.css
│ ├── MatchSettings.css
│ ├── help.css
│ ├── MatchDetails.css
│ ├── match-details-trip-list.css
│ ├── gtfsload.css
│ ├── Changes.css
│ ├── map.css
│ ├── OsmTags.css
│ ├── icon-check-box.css
│ ├── RouteMatch.css
│ ├── match-list.css
│ ├── IconCheckBox.tsx
│ ├── StopMoveController.tsx
│ ├── StopListElement.tsx
│ ├── NewStopController.tsx
│ ├── RematchController.tsx
│ ├── MapTrip.tsx
│ ├── QueryOSM.tsx
│ ├── RouteTripsEditor.tsx
│ ├── Changes.tsx
│ ├── MapMatchMarker.tsx
│ ├── HelpMarkdown.tsx
│ ├── GTFSLoad.tsx
│ ├── OpenCurentViewInJosm.tsx
│ ├── MatchEditor.tsx
│ ├── MatchDetailsTripList.tsx
│ ├── MatchSettings.tsx
│ ├── MatchDetails.tsx
│ ├── Map.tsx
│ ├── OsmTags.tsx
│ ├── MatchList.tsx
│ └── RouteMatch.tsx
├── index.css
├── models
│ ├── MercatorUtil.ts
│ ├── StopMatchesSequence.ts
│ ├── OsmRoute.ts
│ ├── BBOX.ts
│ ├── OsmStop.ts
│ ├── Filters.ts
│ ├── Editor.ts
│ └── GTFSData.ts
├── main.tsx
├── help
│ ├── HelpStopTypes.md
│ ├── HelpRefCode.md
│ ├── HelpNameTemplate.md
│ └── example.osm
├── services
│ ├── Matcher.types.ts
│ ├── utils.ts
│ ├── OSMData.types.ts
│ ├── JOSMRemote.ts
│ ├── OSMData.ts
│ └── Matcher.ts
├── App.css
├── assets
│ └── react.svg
└── App.tsx
├── dist
├── images
│ ├── layers.png
│ ├── layers-2x.png
│ ├── marker-icon.png
│ ├── marker-shadow.png
│ └── marker-icon-2x.png
└── index.html
├── public
├── images
│ ├── layers.png
│ ├── layers-2x.png
│ ├── marker-icon.png
│ ├── marker-shadow.png
│ └── marker-icon-2x.png
└── index.html
├── .babelrc
├── tsconfig.node.json
├── vite.config.ts
├── README.md
├── .gitignore
├── index.html
├── .eslintrc.cjs
├── tsconfig.json
├── LICENSE.md
├── package.json
└── rollup.config.js
/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
refgtfs:ref<operator_name>:refref or gtfs above.
32 | $name, $code, $id, $description
53 | to substitute corresponding GTFS values.
54 |
55 | You can apply regexp replace patterns to substituted values:
56 | $name.re('<search_expression>', '<replace_expression>')
57 |
58 | For instance if you want to remove text in brackets from
59 | $name use $name.re('(.*)', '')
60 | Drop the files here ...
: 34 |Drag 'n' drop GTFS zip file ( or click to select )
35 | } 36 |{gtfsCode || 'none'},
64 | GTFS Stop id: {gtfsStop?.id}
65 | | 133 | add_circle_outline 135 | | 136 |137 | | 138 | |
{key} ({val} objects)