├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE.txt ├── Makefile ├── NOTICE.md ├── README.md ├── dependencies ├── autojar-2.1 │ ├── COPYING │ ├── autojar-core.jar │ ├── autojar.jar │ ├── build.xml │ ├── css │ │ ├── de.css │ │ ├── en.css │ │ ├── moc.css │ │ └── stdFooter.css │ ├── de_d │ │ ├── download.html │ │ ├── dynamic.html │ │ ├── examples.html │ │ ├── files.html │ │ ├── history.html │ │ ├── index.html │ │ ├── options.html │ │ ├── plugin-classes.html │ │ ├── plugin-classpath.html │ │ ├── plugin-conf.html │ │ ├── plugin-files.html │ │ ├── plugin-opts.html │ │ ├── plugin-reso.html │ │ ├── plugin-start.html │ │ ├── plugin.html │ │ ├── special.html │ │ └── usage.html │ ├── doc │ │ ├── css │ │ │ ├── autojar.css │ │ │ ├── de.css │ │ │ ├── en.css │ │ │ ├── moc.css │ │ │ └── stdFooter.css │ │ ├── de │ │ │ ├── cmdline.html │ │ │ ├── compile.html │ │ │ ├── download.html │ │ │ ├── dynamic.html │ │ │ ├── examples.html │ │ │ ├── files.html │ │ │ ├── icons.html │ │ │ ├── index.html │ │ │ ├── leer.html │ │ │ ├── options.html │ │ │ ├── plugin-classes.html │ │ │ ├── plugin-files.html │ │ │ ├── plugin-opts.html │ │ │ ├── plugin-reso.html │ │ │ ├── plugin-start.html │ │ │ ├── plugin-usage.html │ │ │ ├── plugin.html │ │ │ ├── plugin │ │ │ │ └── index.html │ │ │ └── usage.html │ │ ├── de_d │ │ │ ├── download.html │ │ │ ├── dynamic.html │ │ │ ├── examples.html │ │ │ ├── files.html │ │ │ ├── history.html │ │ │ ├── index.html │ │ │ ├── options.html │ │ │ ├── plugin-classes.html │ │ │ ├── plugin-classpath.html │ │ │ ├── plugin-conf.html │ │ │ ├── plugin-files.html │ │ │ ├── plugin-opts.html │ │ │ ├── plugin-reso.html │ │ │ ├── plugin-start.html │ │ │ ├── plugin.html │ │ │ ├── special.html │ │ │ └── usage.html │ │ ├── en │ │ │ ├── download.html │ │ │ ├── dynamic.html │ │ │ ├── examples.html │ │ │ ├── files.html │ │ │ ├── options.html │ │ │ ├── plugin-classes.html │ │ │ ├── plugin-files.html │ │ │ ├── plugin-opts.html │ │ │ ├── plugin-reso.html │ │ │ ├── plugin-start.html │ │ │ ├── plugin.html │ │ │ └── usage.html │ │ ├── en_d │ │ │ ├── download.html │ │ │ ├── dynamic.html │ │ │ ├── examples.html │ │ │ ├── files.html │ │ │ ├── history.html │ │ │ ├── index.html │ │ │ ├── options.html │ │ │ ├── plugin-classes.html │ │ │ ├── plugin-classpath.html │ │ │ ├── plugin-conf.html │ │ │ ├── plugin-files.html │ │ │ ├── plugin-opts.html │ │ │ ├── plugin-reso.html │ │ │ ├── plugin-start.html │ │ │ ├── plugin.html │ │ │ ├── special.html │ │ │ └── usage.html │ │ ├── img │ │ │ ├── autojar16.ico │ │ │ ├── autojar16.png │ │ │ ├── autojar22.png │ │ │ ├── autojar32.ico │ │ │ ├── autojar32.png │ │ │ ├── autojar48.ico │ │ │ ├── autojar48.png │ │ │ ├── back.gif │ │ │ ├── back.png │ │ │ ├── de.gif │ │ │ ├── forward.gif │ │ │ ├── forward.png │ │ │ ├── head.png │ │ │ ├── plugshot0.png │ │ │ ├── plugshot1.png │ │ │ ├── plugshot2.png │ │ │ ├── plugshot3.png │ │ │ ├── plugshot4.png │ │ │ ├── plugshot5.png │ │ │ ├── sf16.png │ │ │ ├── top.gif │ │ │ ├── us.gif │ │ │ ├── warning.png │ │ │ ├── wiz0.png │ │ │ ├── wiz1.png │ │ │ ├── wiz2.png │ │ │ ├── wiz3.png │ │ │ ├── wiz4.png │ │ │ ├── wiz5.png │ │ │ ├── wiz6.png │ │ │ └── wiz6a.png │ │ └── index.html │ ├── en_d │ │ ├── download.html │ │ ├── dynamic.html │ │ ├── examples.html │ │ ├── files.html │ │ ├── history.html │ │ ├── index.html │ │ ├── options.html │ │ ├── plugin-classes.html │ │ ├── plugin-classpath.html │ │ ├── plugin-conf.html │ │ ├── plugin-files.html │ │ ├── plugin-opts.html │ │ ├── plugin-reso.html │ │ ├── plugin-start.html │ │ ├── plugin.html │ │ ├── special.html │ │ └── usage.html │ ├── img │ │ ├── autojar16.ico │ │ ├── autojar16.png │ │ ├── autojar22.png │ │ ├── autojar32.ico │ │ ├── autojar32.png │ │ ├── autojar48.ico │ │ ├── autojar48.png │ │ ├── back.gif │ │ ├── back.png │ │ ├── de.gif │ │ ├── forward.gif │ │ ├── forward.png │ │ ├── head.png │ │ ├── sf16.png │ │ ├── top.gif │ │ ├── us.gif │ │ ├── warning.png │ │ ├── wiz0.png │ │ ├── wiz1.png │ │ ├── wiz2.png │ │ ├── wiz3.png │ │ ├── wiz4.png │ │ ├── wiz5.png │ │ ├── wiz6.png │ │ └── wiz6a.png │ ├── javadoc │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── constant-values.html │ │ ├── de │ │ │ └── monoped │ │ │ │ ├── efile │ │ │ │ ├── EFile.html │ │ │ │ ├── LocalFile.html │ │ │ │ ├── Node.html │ │ │ │ ├── Utils.html │ │ │ │ ├── ZipEntryFile.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ │ └── utils │ │ │ │ ├── FileExpand.html │ │ │ │ ├── FileUtils.html │ │ │ │ ├── Getopt.html │ │ │ │ ├── OSFilter.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── org │ │ │ └── sourceforge │ │ │ │ └── autojar │ │ │ │ ├── Ajar.html │ │ │ │ ├── Autojar.html │ │ │ │ ├── Version.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── resources │ │ │ └── inherit.gif │ │ └── stylesheet.css │ ├── src │ │ ├── autojar.mf │ │ ├── classlist │ │ ├── de │ │ │ └── monoped │ │ │ │ ├── efile │ │ │ │ ├── EFile.java │ │ │ │ ├── LocalFile.java │ │ │ │ ├── Node.java │ │ │ │ ├── Utils.java │ │ │ │ ├── ZipEntryFile.java │ │ │ │ └── ZipNode.java │ │ │ │ └── utils │ │ │ │ ├── FileExpand.java │ │ │ │ ├── FileUtils.java │ │ │ │ ├── Getopt.java │ │ │ │ └── OSFilter.java │ │ └── org │ │ │ └── sourceforge │ │ │ └── autojar │ │ │ ├── Ajar.java │ │ │ ├── Autojar.java │ │ │ ├── Avisitor.java │ │ │ ├── FilePath.java │ │ │ └── Version.java │ └── trove4j.jar ├── class-exclude.grep ├── class.sed ├── fake_slf4j │ └── src │ │ └── org │ │ └── slf4j │ │ ├── Logger.java │ │ └── LoggerFactory.java ├── jackson-annotations │ ├── META-INF │ │ ├── LICENSE │ │ └── MANIFEST.MF │ └── com │ │ └── fasterxml │ │ └── jackson │ │ └── annotation │ │ ├── JacksonAnnotation.java │ │ ├── JacksonAnnotationValue.java │ │ ├── JacksonAnnotationsInside.java │ │ ├── JacksonInject.java │ │ ├── JsonAnyGetter.java │ │ ├── JsonAnySetter.java │ │ ├── JsonAutoDetect.java │ │ ├── JsonBackReference.java │ │ ├── JsonClassDescription.java │ │ ├── JsonCreator.java │ │ ├── JsonEnumDefaultValue.java │ │ ├── JsonFilter.java │ │ ├── JsonFormat.java │ │ ├── JsonGetter.java │ │ ├── JsonIdentityInfo.java │ │ ├── JsonIdentityReference.java │ │ ├── JsonIgnore.java │ │ ├── JsonIgnoreProperties.java │ │ ├── JsonIgnoreType.java │ │ ├── JsonInclude.java │ │ ├── JsonManagedReference.java │ │ ├── JsonProperty.java │ │ ├── JsonPropertyDescription.java │ │ ├── JsonPropertyOrder.java │ │ ├── JsonRawValue.java │ │ ├── JsonRootName.java │ │ ├── JsonSetter.java │ │ ├── JsonSubTypes.java │ │ ├── JsonTypeId.java │ │ ├── JsonTypeInfo.java │ │ ├── JsonTypeName.java │ │ ├── JsonUnwrapped.java │ │ ├── JsonValue.java │ │ ├── JsonView.java │ │ ├── ObjectIdGenerator.java │ │ ├── ObjectIdGenerators.java │ │ ├── ObjectIdResolver.java │ │ ├── OptBoolean.java │ │ ├── PropertyAccessor.java │ │ ├── SimpleObjectIdResolver.java │ │ └── package-info.java └── prefixes.properties ├── graphhopper-ios-sample ├── MBAutoGrowingTextView │ ├── MBAutoGrowingTextView.h │ └── MBAutoGrowingTextView.m ├── README.md ├── graphhopper-ios-sample.xcodeproj │ └── project.pbxproj ├── graphhopper-ios-sample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── Directions.h │ ├── Directions.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── graphhopper-29@1x.png │ │ │ ├── graphhopper-29@2x.png │ │ │ ├── graphhopper-29@3x.png │ │ │ ├── graphhopper-40@1x.png │ │ │ ├── graphhopper-40@2x.png │ │ │ ├── graphhopper-40@3x.png │ │ │ ├── graphhopper-60@2x.png │ │ │ ├── graphhopper-60@3x.png │ │ │ ├── graphhopper-76@1x.png │ │ │ └── graphhopper-76@2x.png │ ├── Info.plist │ ├── PrefixHeader.pch │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── graphhopper-ios-sampleTests │ ├── Info.plist │ └── graphhopper_ios_sampleTests.m └── import-sample.sh ├── graphhopper.xcodeproj └── project.pbxproj ├── make ├── common.mk ├── debug.mk ├── library.mk ├── prepare.mk ├── sysroot_path.sh └── translate.mk └── screenshots └── iPhone-offline-routing.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/README.md -------------------------------------------------------------------------------- /dependencies/autojar-2.1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/COPYING -------------------------------------------------------------------------------- /dependencies/autojar-2.1/autojar-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/autojar-core.jar -------------------------------------------------------------------------------- /dependencies/autojar-2.1/autojar.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/autojar.jar -------------------------------------------------------------------------------- /dependencies/autojar-2.1/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/build.xml -------------------------------------------------------------------------------- /dependencies/autojar-2.1/css/de.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/css/de.css -------------------------------------------------------------------------------- /dependencies/autojar-2.1/css/en.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/css/en.css -------------------------------------------------------------------------------- /dependencies/autojar-2.1/css/moc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/css/moc.css -------------------------------------------------------------------------------- /dependencies/autojar-2.1/css/stdFooter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/css/stdFooter.css -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/download.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/dynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/dynamic.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/examples.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/files.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/history.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/index.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/options.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/plugin-classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/plugin-classes.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/plugin-classpath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/plugin-classpath.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/plugin-conf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/plugin-conf.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/plugin-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/plugin-files.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/plugin-opts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/plugin-opts.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/plugin-reso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/plugin-reso.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/plugin-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/plugin-start.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/plugin.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/special.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/special.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/de_d/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/de_d/usage.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/css/autojar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/css/autojar.css -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/css/de.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/css/de.css -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/css/en.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/css/en.css -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/css/moc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/css/moc.css -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/css/stdFooter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/css/stdFooter.css -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/cmdline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/cmdline.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/compile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/compile.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/download.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/dynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/dynamic.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/examples.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/files.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/icons.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/index.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/leer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/leer.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/options.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/plugin-classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/plugin-classes.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/plugin-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/plugin-files.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/plugin-opts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/plugin-opts.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/plugin-reso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/plugin-reso.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/plugin-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/plugin-start.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/plugin-usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/plugin-usage.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/plugin.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/plugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/plugin/index.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de/usage.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/download.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/dynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/dynamic.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/examples.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/files.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/history.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/index.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/options.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/plugin-classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/plugin-classes.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/plugin-classpath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/plugin-classpath.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/plugin-conf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/plugin-conf.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/plugin-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/plugin-files.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/plugin-opts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/plugin-opts.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/plugin-reso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/plugin-reso.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/plugin-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/plugin-start.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/plugin.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/special.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/special.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/de_d/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/de_d/usage.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en/download.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en/dynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en/dynamic.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en/examples.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en/files.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en/options.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en/plugin-classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en/plugin-classes.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en/plugin-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en/plugin-files.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en/plugin-opts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en/plugin-opts.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en/plugin-reso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en/plugin-reso.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en/plugin-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en/plugin-start.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en/plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en/plugin.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en/usage.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/download.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/dynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/dynamic.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/examples.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/files.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/history.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/index.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/options.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/plugin-classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/plugin-classes.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/plugin-classpath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/plugin-classpath.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/plugin-conf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/plugin-conf.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/plugin-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/plugin-files.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/plugin-opts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/plugin-opts.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/plugin-reso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/plugin-reso.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/plugin-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/plugin-start.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/plugin.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/special.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/special.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/en_d/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/en_d/usage.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/autojar16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/autojar16.ico -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/autojar16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/autojar16.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/autojar22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/autojar22.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/autojar32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/autojar32.ico -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/autojar32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/autojar32.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/autojar48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/autojar48.ico -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/autojar48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/autojar48.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/back.gif -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/back.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/de.gif -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/forward.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/forward.gif -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/forward.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/head.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/plugshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/plugshot0.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/plugshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/plugshot1.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/plugshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/plugshot2.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/plugshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/plugshot3.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/plugshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/plugshot4.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/plugshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/plugshot5.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/sf16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/sf16.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/top.gif -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/us.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/us.gif -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/warning.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/wiz0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/wiz0.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/wiz1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/wiz1.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/wiz2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/wiz2.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/wiz3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/wiz3.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/wiz4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/wiz4.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/wiz5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/wiz5.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/wiz6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/wiz6.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/img/wiz6a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/img/wiz6a.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/doc/index.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/download.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/dynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/dynamic.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/examples.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/files.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/history.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/index.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/options.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/plugin-classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/plugin-classes.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/plugin-classpath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/plugin-classpath.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/plugin-conf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/plugin-conf.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/plugin-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/plugin-files.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/plugin-opts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/plugin-opts.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/plugin-reso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/plugin-reso.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/plugin-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/plugin-start.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/plugin.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/special.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/special.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/en_d/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/en_d/usage.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/autojar16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/autojar16.ico -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/autojar16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/autojar16.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/autojar22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/autojar22.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/autojar32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/autojar32.ico -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/autojar32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/autojar32.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/autojar48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/autojar48.ico -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/autojar48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/autojar48.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/back.gif -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/back.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/de.gif -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/forward.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/forward.gif -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/forward.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/head.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/sf16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/sf16.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/top.gif -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/us.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/us.gif -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/warning.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/wiz0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/wiz0.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/wiz1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/wiz1.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/wiz2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/wiz2.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/wiz3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/wiz3.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/wiz4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/wiz4.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/wiz5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/wiz5.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/wiz6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/wiz6.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/img/wiz6a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/img/wiz6a.png -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/allclasses-frame.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/allclasses-noframe.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/constant-values.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/efile/EFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/efile/EFile.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/efile/LocalFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/efile/LocalFile.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/efile/Node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/efile/Node.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/efile/Utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/efile/Utils.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/efile/ZipEntryFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/efile/ZipEntryFile.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/efile/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/efile/package-frame.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/efile/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/efile/package-summary.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/efile/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/efile/package-tree.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/utils/FileExpand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/utils/FileExpand.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/utils/FileUtils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/utils/FileUtils.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/utils/Getopt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/utils/Getopt.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/utils/OSFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/utils/OSFilter.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/utils/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/utils/package-frame.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/utils/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/utils/package-summary.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/de/monoped/utils/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/de/monoped/utils/package-tree.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/deprecated-list.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/help-doc.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/index-all.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/index.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/org/sourceforge/autojar/Ajar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/org/sourceforge/autojar/Ajar.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/org/sourceforge/autojar/Autojar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/org/sourceforge/autojar/Autojar.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/org/sourceforge/autojar/Version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/org/sourceforge/autojar/Version.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/org/sourceforge/autojar/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/org/sourceforge/autojar/package-frame.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/org/sourceforge/autojar/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/org/sourceforge/autojar/package-summary.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/org/sourceforge/autojar/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/org/sourceforge/autojar/package-tree.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/overview-frame.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/overview-summary.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/overview-tree.html -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/package-list -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/resources/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/resources/inherit.gif -------------------------------------------------------------------------------- /dependencies/autojar-2.1/javadoc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/javadoc/stylesheet.css -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/autojar.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/autojar.mf -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/classlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/classlist -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/de/monoped/efile/EFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/de/monoped/efile/EFile.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/de/monoped/efile/LocalFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/de/monoped/efile/LocalFile.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/de/monoped/efile/Node.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/de/monoped/efile/Node.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/de/monoped/efile/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/de/monoped/efile/Utils.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/de/monoped/efile/ZipEntryFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/de/monoped/efile/ZipEntryFile.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/de/monoped/efile/ZipNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/de/monoped/efile/ZipNode.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/de/monoped/utils/FileExpand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/de/monoped/utils/FileExpand.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/de/monoped/utils/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/de/monoped/utils/FileUtils.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/de/monoped/utils/Getopt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/de/monoped/utils/Getopt.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/de/monoped/utils/OSFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/de/monoped/utils/OSFilter.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/org/sourceforge/autojar/Ajar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/org/sourceforge/autojar/Ajar.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/org/sourceforge/autojar/Autojar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/org/sourceforge/autojar/Autojar.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/org/sourceforge/autojar/Avisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/org/sourceforge/autojar/Avisitor.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/org/sourceforge/autojar/FilePath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/org/sourceforge/autojar/FilePath.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/src/org/sourceforge/autojar/Version.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/autojar-2.1/src/org/sourceforge/autojar/Version.java -------------------------------------------------------------------------------- /dependencies/autojar-2.1/trove4j.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/class-exclude.grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/class-exclude.grep -------------------------------------------------------------------------------- /dependencies/class.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/class.sed -------------------------------------------------------------------------------- /dependencies/fake_slf4j/src/org/slf4j/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/fake_slf4j/src/org/slf4j/Logger.java -------------------------------------------------------------------------------- /dependencies/fake_slf4j/src/org/slf4j/LoggerFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/fake_slf4j/src/org/slf4j/LoggerFactory.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/META-INF/LICENSE -------------------------------------------------------------------------------- /dependencies/jackson-annotations/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JacksonAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JacksonAnnotation.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JacksonAnnotationValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JacksonAnnotationValue.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JacksonAnnotationsInside.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JacksonAnnotationsInside.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JacksonInject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JacksonInject.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonAnyGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonAnyGetter.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonAnySetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonAnySetter.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonAutoDetect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonAutoDetect.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonBackReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonBackReference.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonClassDescription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonClassDescription.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonCreator.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonEnumDefaultValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonEnumDefaultValue.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonFilter.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonFormat.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonGetter.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonIdentityInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonIdentityInfo.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonIdentityReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonIdentityReference.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonIgnore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonIgnore.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonIgnoreProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonIgnoreProperties.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonIgnoreType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonIgnoreType.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonInclude.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonInclude.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonManagedReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonManagedReference.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonProperty.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonPropertyDescription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonPropertyDescription.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonPropertyOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonPropertyOrder.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonRawValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonRawValue.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonRootName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonRootName.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonSetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonSetter.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonSubTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonSubTypes.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonTypeId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonTypeId.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonTypeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonTypeInfo.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonTypeName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonTypeName.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonUnwrapped.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonUnwrapped.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonValue.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/JsonView.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/ObjectIdGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/ObjectIdGenerator.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/ObjectIdGenerators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/ObjectIdGenerators.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/ObjectIdResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/ObjectIdResolver.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/OptBoolean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/OptBoolean.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/PropertyAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/PropertyAccessor.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/SimpleObjectIdResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/SimpleObjectIdResolver.java -------------------------------------------------------------------------------- /dependencies/jackson-annotations/com/fasterxml/jackson/annotation/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/jackson-annotations/com/fasterxml/jackson/annotation/package-info.java -------------------------------------------------------------------------------- /dependencies/prefixes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/dependencies/prefixes.properties -------------------------------------------------------------------------------- /graphhopper-ios-sample/MBAutoGrowingTextView/MBAutoGrowingTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/MBAutoGrowingTextView/MBAutoGrowingTextView.h -------------------------------------------------------------------------------- /graphhopper-ios-sample/MBAutoGrowingTextView/MBAutoGrowingTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/MBAutoGrowingTextView/MBAutoGrowingTextView.m -------------------------------------------------------------------------------- /graphhopper-ios-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/README.md -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/AppDelegate.h -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/AppDelegate.m -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Directions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Directions.h -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Directions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Directions.m -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-29@1x.png -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-29@2x.png -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-29@3x.png -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-40@1x.png -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-40@2x.png -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-40@3x.png -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-60@2x.png -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-60@3x.png -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-76@1x.png -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Images.xcassets/AppIcon.appiconset/graphhopper-76@2x.png -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/Info.plist -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/PrefixHeader.pch -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/ViewController.h -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/ViewController.m -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sample/main.m -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sampleTests/Info.plist -------------------------------------------------------------------------------- /graphhopper-ios-sample/graphhopper-ios-sampleTests/graphhopper_ios_sampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/graphhopper-ios-sampleTests/graphhopper_ios_sampleTests.m -------------------------------------------------------------------------------- /graphhopper-ios-sample/import-sample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper-ios-sample/import-sample.sh -------------------------------------------------------------------------------- /graphhopper.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/graphhopper.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /make/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/make/common.mk -------------------------------------------------------------------------------- /make/debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/make/debug.mk -------------------------------------------------------------------------------- /make/library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/make/library.mk -------------------------------------------------------------------------------- /make/prepare.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/make/prepare.mk -------------------------------------------------------------------------------- /make/sysroot_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/make/sysroot_path.sh -------------------------------------------------------------------------------- /make/translate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/make/translate.mk -------------------------------------------------------------------------------- /screenshots/iPhone-offline-routing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-ios/HEAD/screenshots/iPhone-offline-routing.gif --------------------------------------------------------------------------------