Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
FloodSimulation-Browser
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Richard Torenvliet
FloodSimulation-Browser
Commits
68fdc0b1
Commit
68fdc0b1
authored
Nov 18, 2013
by
Richard Torenvliet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
did some changes to includes, still have an error because the API is out of date
parent
65cf9e79
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
45 additions
and
45 deletions
+45
-45
www/app.js
www/app.js
+6
-5
www/app/controller/ChartController.js
www/app/controller/ChartController.js
+6
-8
www/app/controller/Main.js
www/app/controller/Main.js
+17
-19
www/app/model/SimulationDetails.js
www/app/model/SimulationDetails.js
+2
-2
www/app/model/SimulationModel.js
www/app/model/SimulationModel.js
+2
-2
www/app/store/FloodDetailStore.js
www/app/store/FloodDetailStore.js
+2
-2
www/index.html
www/index.html
+10
-7
No files found.
www/app.js
View file @
68fdc0b1
//<debug>
Ext
.
Loader
.
setPath
({
'
Ext
'
:
'
sdk/src
'
});
//</debug>
Ext
.
Loader
.
setConfig
({
enabled
:
true
});
Ext
.
application
({
controllers
:
[
"
Main
"
,
"
ChartController
"
],
...
...
www/app/controller/ChartController.js
View file @
68fdc0b1
...
...
@@ -97,9 +97,7 @@ Ext.define('app.controller.ChartController', {
volume
:
parseInt
(
line_clmns
[
2
]),
});
}
console
.
log
(
data
);
store
.
setData
(
data
);
console
.
log
(
store
);
this
.
openChart
();
},
...
...
@@ -112,9 +110,9 @@ Ext.define('app.controller.ChartController', {
this
.
getFloodchart
().
hide
();
},
expandChart
:
function
(){
//TODO:
//expandChart: function(){
}
//}
});
www/app/controller/Main.js
View file @
68fdc0b1
...
...
@@ -235,11 +235,11 @@ Ext.define('app.controller.Main', {
* steps available, crucial data for the displaying the images.
*/
var
url
=
''
;
if
(
this
.
SimulType
==
'
Flood
'
)
{
if
(
this
.
SimulType
==
'
Flood
'
)
{
url
=
'
http://sangkil.science.uva.nl:8003/drfsm/
'
+
test_id
+
'
/info.json
'
;
}
else
{
url
=
'
http://sangkil.science.uva.nl:8003/lsm/
'
+
test_id
+
'
/visualization/paru/info.json
'
;
}
else
url
=
'
http://sangkil.science.uva.nl:8003/lsm/
'
+
test_id
+
'
/visualization/paru/info.json
'
;
this
.
requestInfo
(
test_id
,
cb
,
url
);
/*show overlay*/
...
...
@@ -328,12 +328,10 @@ Ext.define('app.controller.Main', {
var
me
=
this
;
var
summary_store
=
Ext
.
getStore
(
'
SimulationsSummary
'
);
// var mapImage ='http://maps.googleapis.com/maps/api/staticmap?center='+ center[0] +','+ center[1] + '&zoom=13&size=300x180&maptype=roadmap&sensor=false';
summary_store
.
each
(
function
(
record
){
var
test_id
=
record
.
get
(
'
test_id
'
);
var
setImages
=
function
(
result
){
// document.getElementById(test_id + "_map").src = mapImage;//me.getMapView().getFloodImage(test_id, result['timesteps'][result['timesteps'].length - 1]);
var
image
=
me
.
getMapView
().
getFloodImage
(
test_id
,
result
[
'
timesteps
'
][
result
[
'
timesteps
'
].
length
-
1
])
||
'
resources/images/noimage.png
'
;
document
.
getElementById
(
test_id
+
"
_flood
"
).
src
=
image
;
}
...
...
@@ -345,7 +343,7 @@ Ext.define('app.controller.Main', {
var
url
=
url
||
'
http://sangkil.science.uva.nl:8003/drfsm/
'
+
test_id
+
'
/info.json
'
;
var
request
=
Ext
.
Ajax
.
request
({
method
:
'
GET
'
,
url
:
url
,
//'http://sangkil.science.uva.nl:8003/drfsm/'+ test_id +'/info.json',
url
:
url
,
success
:
function
(
response
,
opts
){
var
result
=
Ext
.
decode
(
response
.
responseText
);
...
...
www/app/model/SimulationDetails.js
View file @
68fdc0b1
www/app/model/SimulationModel.js
View file @
68fdc0b1
www/app/store/FloodDetailStore.js
View file @
68fdc0b1
www/index.html
View file @
68fdc0b1
<
!
DOCTYPE HTML>
<
p
DOCTYPE
HTML
>
<html
manifest=
""
lang=
"en-US"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
Floodsimulation Browser
</title>
<style
type=
"text/css"
>
/**
...
...
@@ -120,10 +121,12 @@
}
</style>
<script
type=
"text/javascript"
src=
"http://maps.google.com/maps/api/js?sensor=true"
></script>
<script
id=
"microloader"
type=
"text/javascript"
src=
"sdk/microloader/development.js"
></script>
<script
type=
"text/javascript"
src=
"sdk/touch-charts.js"
></script>
<script
type=
"text/javascript"
src=
"http://maps.google.com/maps/api/js?sensor=true"
></script>
<script
id=
"microloader"
type=
"text/javascript"
src=
"sdk/microloader/development.js"
></script>
<script
type=
"text/javascript"
src=
"sdk/touch-charts.js"
></script>
</head>
<body>
<div
id=
"appLoadingIndicator"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment