Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Crisismap/crisismap-cordova

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CrisisMap mobile application

to build:

  1. build crisismap project (app directory)
  2. cordova platform add browser
  3. cordova platform add ios
  4. cordova plugin add cordova-plugin-device
  5. cordova plugin add cordova-plugin-geolocation
  6. patch platforms/ios/CrisisMap/Classes/MainViewController.m with following code to prevent web view bouncing
    - (void)viewDidLoad
    {
        [super viewDidLoad];
        UIScrollView* sv = nil;
        for (UIView* v in self.webView.subviews){
            if ([v isKindOfClass:[UIScrollView class] ]){
                sv = (UIScrollView*) v;
                sv.bounces = NO;
            }
        }
    }
  7. build project with XCode

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages