Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
x3domlet
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Elphel
x3domlet
Commits
79751523
Commit
79751523
authored
7 years ago
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
markers colors and size
parent
777e1748
master
ctrl-mouseover-map
No related merge requests found
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
109 additions
and
84 deletions
+109
-84
leaflet_init.js
js/leaflet_init.js
+1
-34
ui_init.js
js/ui_init.js
+5
-39
util_functions.js
js/util_functions.js
+78
-0
x3dom_init.js
js/x3dom_init.js
+16
-10
x3l.js
js/x3l.js
+7
-1
test.html
test.html
+2
-0
No files found.
js/leaflet_init.js
View file @
79751523
...
@@ -136,8 +136,7 @@ LeafletObject.prototype.highlightMarker = function(index){
...
@@ -136,8 +136,7 @@ LeafletObject.prototype.highlightMarker = function(index){
LeafletObject
.
prototype
.
dehighlightMarker
=
function
(
index
){
LeafletObject
.
prototype
.
dehighlightMarker
=
function
(
index
){
var
color
=
$
(
"#my-sph-"
+
index
).
find
(
"material"
).
attr
(
"myColor"
);
color
=
Data
.
markers
[
index
].
color
;
color
=
convert_color_x2l
(
color
);
var
style
=
{
color
:
color
,
fillColor
:
color
};
var
style
=
{
color
:
color
,
fillColor
:
color
};
...
@@ -165,35 +164,3 @@ LeafletObject.prototype.deleteMarker = function(index){
...
@@ -165,35 +164,3 @@ LeafletObject.prototype.deleteMarker = function(index){
this
.
marker
.
removeMeasureMarker
(
index
);
this
.
marker
.
removeMeasureMarker
(
index
);
}
}
function
convert_color_x2l
(
color
){
var
rgb
=
color
.
split
(
" "
);
var
r
=
parseInt
(
rgb
[
0
]
*
15
);
var
g
=
parseInt
(
rgb
[
1
]
*
15
);
var
b
=
parseInt
(
rgb
[
2
]
*
15
);
r
=
r
.
toString
(
16
);
g
=
g
.
toString
(
16
);
b
=
b
.
toString
(
16
);
return
"#"
+
r
+
g
+
b
;
}
function
convert_color_l2x
(
color
){
var
r
=
parseInt
(
color
[
1
],
16
);
var
g
=
parseInt
(
color
[
2
],
16
);
var
b
=
parseInt
(
color
[
3
],
16
);
r
=
r
/
15
;
g
=
g
/
15
;
b
=
b
/
15
;
return
r
+
" "
+
g
+
" "
+
b
;
}
This diff is collapsed.
Click to expand it.
js/ui_init.js
View file @
79751523
...
@@ -63,6 +63,8 @@ var SETTINGS = {
...
@@ -63,6 +63,8 @@ var SETTINGS = {
// 'kml' : "scene.kml"
// 'kml' : "scene.kml"
}
}
var
MARKER_PREFIX
=
"my-sph-"
;
// no comments
// no comments
function
parseURL
(){
function
parseURL
(){
var
parameters
=
location
.
href
.
replace
(
/
\?
/ig
,
"&"
).
split
(
"&"
);
var
parameters
=
location
.
href
.
replace
(
/
\?
/ig
,
"&"
).
split
(
"&"
);
...
@@ -478,7 +480,9 @@ function leaf_events(){
...
@@ -478,7 +480,9 @@ function leaf_events(){
var
mark
=
new
X3L
({
var
mark
=
new
X3L
({
latitude
:
Lm
.
_latlng
.
lat
,
latitude
:
Lm
.
_latlng
.
lat
,
longitude
:
Lm
.
_latlng
.
lng
longitude
:
Lm
.
_latlng
.
lng
,
color
:
SETTINGS
.
markercolor
,
size
:
SETTINGS
.
markersize
,
});
});
var
p1_ll
=
Camera
.
_latlng
;
var
p1_ll
=
Camera
.
_latlng
;
...
@@ -720,41 +724,3 @@ function x3d_mouseMove(){
...
@@ -720,41 +724,3 @@ function x3d_mouseMove(){
Scene
.
old_view_translation
=
d
;
Scene
.
old_view_translation
=
d
;
}
}
// http://www.movable-type.co.uk/scripts/latlong.html
// initial bearing
// precision problems?!
function
getAzimuth2
(
p1
,
p2
){
//p1 - start point
//p2 - end point
var
dlat
=
p2
.
lat
-
p1
.
lat
;
var
dlon
=
p2
.
lng
-
p1
.
lng
;
var
y
=
Math
.
sin
(
dlon
)
*
Math
.
cos
(
p2
.
lat
);
var
x
=
Math
.
cos
(
p1
.
lat
)
*
Math
.
sin
(
p2
.
lat
)
-
Math
.
sin
(
p1
.
lat
)
*
Math
.
cos
(
p2
.
lat
)
*
Math
.
cos
(
dlon
);
var
azimuth
=
((
2
*
Math
.
PI
+
Math
.
atan2
(
y
,
x
))
*
180
/
Math
.
PI
)
%
360
;
return
azimuth
;
}
function
getAzimuth
(
p1_ll
,
p2_ll
){
var
Camera
=
Map
.
marker
;
var
p1
=
Camera
.
_map
.
latLngToLayerPoint
(
p1_ll
);
var
p2
=
Camera
.
_map
.
latLngToLayerPoint
(
p2_ll
);
var
dx
=
p2
.
x
-
p1
.
x
;
var
dz
=
p2
.
y
-
p1
.
y
;
var
azimuth
=
(
180
/
Math
.
PI
*
Math
.
atan2
(
dx
,
-
dz
)
+
360
)
%
360
;
return
azimuth
;
}
This diff is collapsed.
Click to expand it.
js/util_functions.js
0 → 100644
View file @
79751523
/*
* convert '0.5 1.0 0.5' to #7f7
*/
function
convert_color_x2l
(
color
){
var
rgb
=
color
.
split
(
" "
);
var
r
=
parseInt
(
rgb
[
0
]
*
15
);
var
g
=
parseInt
(
rgb
[
1
]
*
15
);
var
b
=
parseInt
(
rgb
[
2
]
*
15
);
r
=
r
.
toString
(
16
);
g
=
g
.
toString
(
16
);
b
=
b
.
toString
(
16
);
return
"#"
+
r
+
g
+
b
;
}
/*
* convert #7f7 to '0.5 1.0 0.5'
*/
function
convert_color_l2x
(
color
){
var
r
=
parseInt
(
color
[
1
],
16
);
var
g
=
parseInt
(
color
[
2
],
16
);
var
b
=
parseInt
(
color
[
3
],
16
);
r
=
r
/
15
;
g
=
g
/
15
;
b
=
b
/
15
;
return
r
+
" "
+
g
+
" "
+
b
;
}
// http://www.movable-type.co.uk/scripts/latlong.html
// initial bearing
// precision problems?!
/*
* azimuth by geo coords
*/
function
getAzimuth2
(
p1
,
p2
){
//p1 - start point
//p2 - end point
var
dlat
=
p2
.
lat
-
p1
.
lat
;
var
dlon
=
p2
.
lng
-
p1
.
lng
;
var
y
=
Math
.
sin
(
dlon
)
*
Math
.
cos
(
p2
.
lat
);
var
x
=
Math
.
cos
(
p1
.
lat
)
*
Math
.
sin
(
p2
.
lat
)
-
Math
.
sin
(
p1
.
lat
)
*
Math
.
cos
(
p2
.
lat
)
*
Math
.
cos
(
dlon
);
var
azimuth
=
((
2
*
Math
.
PI
+
Math
.
atan2
(
y
,
x
))
*
180
/
Math
.
PI
)
%
360
;
return
azimuth
;
}
/*
* azimuth by canvas coords
*/
function
getAzimuth
(
p1_ll
,
p2_ll
){
var
Camera
=
Map
.
marker
;
var
p1
=
Camera
.
_map
.
latLngToLayerPoint
(
p1_ll
);
var
p2
=
Camera
.
_map
.
latLngToLayerPoint
(
p2_ll
);
var
dx
=
p2
.
x
-
p1
.
x
;
var
dz
=
p2
.
y
-
p1
.
y
;
var
azimuth
=
(
180
/
Math
.
PI
*
Math
.
atan2
(
dx
,
-
dz
)
+
360
)
%
360
;
return
azimuth
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
js/x3dom_init.js
View file @
79751523
...
@@ -292,6 +292,10 @@ X3DOMObject.Shape.prototype._registerEvents = function(){
...
@@ -292,6 +292,10 @@ X3DOMObject.Shape.prototype._registerEvents = function(){
var
z
=
e
.
originalEvent
.
worldZ
;
var
z
=
e
.
originalEvent
.
worldZ
;
if
(
self
.
_ctrlKey
||
SETTINGS
.
pointer
){
if
(
self
.
_ctrlKey
||
SETTINGS
.
pointer
){
$
(
"#sliding_sphere"
).
find
(
'material'
).
attr
(
"diffuseColor"
,
convert_color_l2x
(
SETTINGS
.
markercolor
));
$
(
"#sliding_sphere"
).
find
(
'Sphere'
).
attr
(
"radius"
,
SETTINGS
.
markersize
/
2
);
X3DOMObject
.
Marker
.
place
(
x
,
y
,
z
,
"sliding_sphere"
);
X3DOMObject
.
Marker
.
place
(
x
,
y
,
z
,
"sliding_sphere"
);
$
(
"#sliding_sphere"
).
find
(
"switch"
).
attr
(
"whichChoice"
,
0
);
$
(
"#sliding_sphere"
).
find
(
"switch"
).
attr
(
"whichChoice"
,
0
);
}
else
{
}
else
{
...
@@ -416,17 +420,20 @@ X3DOMObject.prototype.createMarker = function(x,y,z,id){
...
@@ -416,17 +420,20 @@ X3DOMObject.prototype.createMarker = function(x,y,z,id){
var
self
=
this
;
var
self
=
this
;
sph_class
=
""
;
var
sph_class
=
""
;
var
index
=
null
;
var
index
=
null
;
var
color
=
convert_color_l2x
(
SETTINGS
.
markercolor
);
var
size
=
SETTINGS
.
markersize
/
2
;
if
((
id
==
""
)
||
(
id
==
undefined
)){
if
((
id
==
""
)
||
(
id
==
undefined
)){
sph_class
=
"my-markers"
;
sph_class
=
"my-markers"
;
index
=
$
(
"."
+
sph_class
).
length
;
index
=
$
(
"."
+
sph_class
).
length
;
id
=
"my-sph-"
+
index
;
id
=
"my-sph-"
+
index
;
color
=
convert_color_l2x
(
self
.
data
.
markers
[
index
].
color
);
size
=
self
.
data
.
markers
[
index
].
size
/
2
;
}
}
var
color
=
convert_color_l2x
(
SETTINGS
.
markercolor
);
var
html
=
`
var
html
=
`
<group id='`
+
id
+
`' class='`
+
sph_class
+
`'>
<group id='`
+
id
+
`' class='`
+
sph_class
+
`'>
...
@@ -436,22 +443,19 @@ X3DOMObject.prototype.createMarker = function(x,y,z,id){
...
@@ -436,22 +443,19 @@ X3DOMObject.prototype.createMarker = function(x,y,z,id){
<appearance>
<appearance>
<material diffuseColor='`
+
color
+
`' transparency='0.0' myColor='`
+
color
+
`'></material>
<material diffuseColor='`
+
color
+
`' transparency='0.0' myColor='`
+
color
+
`'></material>
</appearance>
</appearance>
<Sphere DEF="sphere" radius="`
+
(
SETTINGS
.
markersize
/
2
)
+
`" />
<Sphere DEF="sphere" radius="`
+
size
+
`" />
</shape>
</shape>
</transform>
</transform>
</switch>
</switch>
</group>
</group>
`
;
`
;
var
test
=
convert_color_x2l
(
SETTINGS
.
markercolor
);
console
.
log
(
test
);
var
sphere_element
=
$
(
html
);
var
sphere_element
=
$
(
html
);
$
(
this
.
element
).
find
(
"scene"
).
append
(
sphere_element
);
$
(
this
.
element
).
find
(
"scene"
).
append
(
sphere_element
);
var
shape
=
$
(
sphere_element
).
find
(
"shape"
);
//
var shape = $(sphere_element).find("shape");
var
id_prefix
=
$
(
sphere_element
).
attr
(
"id"
).
substr
(
0
,
7
);
//
var id_prefix = $(sphere_element).attr("id").substr(0,7);
return
sphere_element
;
return
sphere_element
;
// sphere events
// sphere events
...
@@ -951,7 +955,9 @@ X3DOMObject.PointerMarker.prototype._registerEvents = function(){
...
@@ -951,7 +955,9 @@ X3DOMObject.PointerMarker.prototype._registerEvents = function(){
var
mark
=
new
X3L
({
var
mark
=
new
X3L
({
x
:
parseFloat
(
xyz
[
0
])
||
0
,
x
:
parseFloat
(
xyz
[
0
])
||
0
,
y
:
parseFloat
(
xyz
[
1
])
||
0
,
y
:
parseFloat
(
xyz
[
1
])
||
0
,
z
:
parseFloat
(
xyz
[
2
])
||
0
z
:
parseFloat
(
xyz
[
2
])
||
0
,
color
:
SETTINGS
.
markercolor
,
size
:
SETTINGS
.
markersize
,
});
});
mark
.
d_x3d
=
Math
.
sqrt
(
mark
.
x
*
mark
.
x
+
mark
.
z
*
mark
.
z
);
mark
.
d_x3d
=
Math
.
sqrt
(
mark
.
x
*
mark
.
x
+
mark
.
z
*
mark
.
z
);
...
...
This diff is collapsed.
Click to expand it.
js/x3l.js
View file @
79751523
...
@@ -20,7 +20,10 @@ var X3L = function(options){
...
@@ -20,7 +20,10 @@ var X3L = function(options){
tilt
:
90
,
tilt
:
90
,
roll
:
0
,
roll
:
0
,
fov
:
0
fov
:
0
,
color
:
"#1f1"
,
size
:
2
,
};
};
this
.
_data
=
$
.
extend
(
defaults
,
options
);
this
.
_data
=
$
.
extend
(
defaults
,
options
);
...
@@ -38,6 +41,9 @@ var X3L = function(options){
...
@@ -38,6 +41,9 @@ var X3L = function(options){
this
.
roll
=
this
.
_data
.
roll
;
this
.
roll
=
this
.
_data
.
roll
;
this
.
fov
=
this
.
_data
.
fov
;
this
.
fov
=
this
.
_data
.
fov
;
this
.
color
=
this
.
_data
.
color
;
this
.
size
=
this
.
_data
.
size
;
};
};
This diff is collapsed.
Click to expand it.
test.html
View file @
79751523
...
@@ -24,6 +24,8 @@
...
@@ -24,6 +24,8 @@
<script
type=
'text/javascript'
src=
'js/ui_functions.js'
></script>
<script
type=
'text/javascript'
src=
'js/ui_functions.js'
></script>
<script
type=
'text/javascript'
src=
'js/ui_align.js'
></script>
<script
type=
'text/javascript'
src=
'js/ui_align.js'
></script>
<script
type=
'text/javascript'
src=
'js/util_functions.js'
></script>
<link
rel=
'stylesheet'
type=
'text/css'
href=
'js/leaflet/leaflet.css'
></link>
<link
rel=
'stylesheet'
type=
'text/css'
href=
'js/leaflet/leaflet.css'
></link>
<link
rel=
'stylesheet'
type=
'text/css'
href=
'js/x3dom/x3dom.css'
></link>
<link
rel=
'stylesheet'
type=
'text/css'
href=
'js/x3dom/x3dom.css'
></link>
...
...
This diff is collapsed.
Click to expand it.
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