Skip to content

Commit 3e9d390

Browse files
author
LEinfeldt
committed
Setup initial map view and sidebar
1 parent 1978f49 commit 3e9d390

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+79693
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Specifies intentionally untracked files to ignore when using Git
2+
# http://git-scm.com/docs/gitignore
3+
4+
node_modules/
5+
platforms/
6+
plugins/

config.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version='1.0' encoding='utf-8'?>
2+
<widget id="io.cordova.hellocordova" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
3+
<name>HelloCordova</name>
4+
<description>
5+
A sample Apache Cordova application that responds to the deviceready event.
6+
</description>
7+
<author email="[email protected]" href="http://cordova.io">
8+
Apache Cordova Team
9+
</author>
10+
<content src="index.html" />
11+
<plugin name="cordova-plugin-whitelist" spec="1" />
12+
<access origin="*" />
13+
<allow-intent href="http://*/*" />
14+
<allow-intent href="https://*/*" />
15+
<allow-intent href="tel:*" />
16+
<allow-intent href="sms:*" />
17+
<allow-intent href="mailto:*" />
18+
<allow-intent href="geo:*" />
19+
<platform name="android">
20+
<allow-intent href="market:*" />
21+
</platform>
22+
<platform name="ios">
23+
<allow-intent href="itms:*" />
24+
<allow-intent href="itms-apps:*" />
25+
</platform>
26+
</widget>

hooks/README.md

Lines changed: 23 additions & 0 deletions

package.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "helloworld",
3+
"displayName": "HelloCordova",
4+
"version": "1.0.0",
5+
"description": "A sample Apache Cordova application that responds to the deviceready event.",
6+
"main": "index.js",
7+
"scripts": {
8+
"build": "browserify -t [ babelify --presets [ react ] ] src/index.js -o www/bundle.js",
9+
"devBuild": "browserify --debug -t [ babelify --presets [ react ] ] src/index.js -o www/bundle.js"
10+
},
11+
"author": "Apache Cordova Team",
12+
"license": "Apache-2.0",
13+
"devDependencies": {
14+
"babel-core": "^6.26.0",
15+
"babel-preset-react": "^6.24.1",
16+
"babelify": "^8.0.0",
17+
"onsenui": "^2.8.2",
18+
"react": "^16.2.0",
19+
"react-dom": "^16.2.0",
20+
"react-onsenui": "^1.9.0"
21+
},
22+
"dependencies": {
23+
"leaflet": "^1.2.0",
24+
"onsenui": "^2.8.2",
25+
"react": "^16.2.0",
26+
"react-dom": "^16.2.0",
27+
"react-leaflet": "^1.7.8",
28+
"react-onsenui": "^1.9.0"
29+
}
30+
}

res/README.md

Lines changed: 29 additions & 0 deletions

res/icon/android/icon-36-ldpi.png

3.02 KB

res/icon/android/icon-48-mdpi.png

3.99 KB

res/icon/android/icon-72-hdpi.png

5.94 KB

res/icon/android/icon-96-xhdpi.png

7.5 KB

res/icon/bada-wac/icon-48-type5.png

4.01 KB

0 commit comments

Comments
 (0)