Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2XB3FinalProject
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Schankula
2XB3FinalProject
Commits
ae697653
Commit
ae697653
authored
6 years ago
by
Winnie
Browse files
Options
Downloads
Patches
Plain Diff
Update
parent
3d0208a7
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tomcat/webapps/Trawl/infoWindow.js
+1
-1
1 addition, 1 deletion
tomcat/webapps/Trawl/infoWindow.js
tomcat/webapps/Trawl/map.js
+1
-1
1 addition, 1 deletion
tomcat/webapps/Trawl/map.js
with
2 additions
and
2 deletions
tomcat/webapps/Trawl/infoWindow.js
+
1
−
1
View file @
ae697653
...
...
@@ -5,7 +5,7 @@
// When the user clicks the marker, an info window opens
function
initInfo
(
lati
,
longi
,
info
)
{
for
(
int
i
=
0
;
i
<
lati
.
length
;
i
++
){
for
(
var
i
=
0
;
i
<
lati
.
length
;
i
++
){
// Generate map centred at Great Lakes
var
map
=
new
google
.
maps
.
Map
(
document
.
getElementById
(
'
map
'
),
{
...
...
This diff is collapsed.
Click to expand it.
tomcat/webapps/Trawl/map.js
+
1
−
1
View file @
ae697653
...
...
@@ -61,7 +61,7 @@ function changeOpacity() {
// Input latitude and longitude into map points
function
getPoints
(
latitude
,
longitude
)
{
var
result
=
[];
for
(
int
i
=
0
;
i
<
latitude
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
latitude
.
length
;
i
++
)
{
result
.
push
(
new
google
.
maps
.
LatLng
(
latitude
[
i
],
longitude
[
i
]));
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment