Commit 1008c131 authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

measurement markers heights

parent 5e63b9e0
...@@ -137,6 +137,7 @@ ...@@ -137,6 +137,7 @@
var p1 = this._map.latLngToLayerPoint(p1_ll); var p1 = this._map.latLngToLayerPoint(p1_ll);
var p2 = this._map.latLngToLayerPoint(p2_ll); var p2 = this._map.latLngToLayerPoint(p2_ll);
// vertical only movement
p2.x = p1.x; p2.x = p1.x;
this._altitude = (p1.y - p2.y)/10; this._altitude = (p1.y - p2.y)/10;
...@@ -478,8 +479,8 @@ ...@@ -478,8 +479,8 @@
_mouseMove: function(e){ _mouseMove: function(e){
// from some plugin - I didn't test if it's true // from some plugin - didn't test if it's true
// necassary for _dragCircle. If switched on already within _dragCircle an unwanted click is fired at the end of the drag. // original text: "necassary for _dragCircle. If switched on already within _dragCircle an unwanted click is fired at the end of the drag."
this._map.on('click',this._mouseClick,this); this._map.on('click',this._mouseClick,this);
}, },
......
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
var pll = L.polyline(l_d, { var pll = L.polyline(l_d, {
color: '#1f1', color: '#1f1',
weight:1, weight:2,
dashArray:"5,5" dashArray:"5,5"
}).addTo(this._layerPaint).bringToBack(); }).addTo(this._layerPaint).bringToBack();
...@@ -93,44 +93,191 @@ ...@@ -93,44 +93,191 @@
}).openTooltip(); }).openTooltip();
tmp_point.on('click',this._measureMarkerClick,this); tmp_point.on('click',this._measureMarkerClick,this);
//tmp_point.on('mouseover',this._updateMeasureMarker,this);
//tmp_point.on('mouseout',this._updateMeasureMarker,this);
tmp_point.on('mousedown',this._dragMeasureMarker,this); tmp_point.on('mousedown',this._dragMeasureMarker,this);
tmp_point._index = this._measureMarkers.length; tmp_point._index = this._measureMarkers.length;
// special double
tmp_point.__latlng = latlng;
tmp_point._altitude = parseFloat(this._altitude);
this._measureMarkers.push(tmp_point); this._measureMarkers.push(tmp_point);
this._measureLines.push(pll); this._measureLines.push(pll);
this._updateMeasureMarker(tmp_point._index);
return tmp_point._index; return tmp_point._index;
}, },
moveMeasureMarker: function(param,index){ /*
setMarkerPoint: function(param, index){
if (this._measureMarkers==undefined) return;
var latlng = param;
var hecs = this.getHCState();
if (param.target){
index = param.target._index;
latlng = param.latlng;
if (hecs){
var p1_ll = this._latlng;
var p2_ll = 0;
}
// prevent image getting grabbed by browser
param.originalEvent.preventDefault();
}
},
*/
_updateMeasureMarker: function(i,ignore_hecs){
// if hecs - switch to heights
// if not - switch to distances
// redraw, params changed somewhere else
// in hc mode - mouseover will draw vertical dash line
// display altitude
// then dragging along that line
// then mouse out
// make mark._READY like in the base marker
if (ignore_hecs){
var hecs = false;
}else{
var hecs = this.getHCState();
}
// get mark and the corresponding line
var mark = this._measureMarkers[i];
var line = this._measureLines[i];
// base point
var p_base_ll = this._latlng;
var p_base = this._map.latLngToLayerPoint(p_base_ll);
// marker point base
//var p_mark_ll = mark._latlng;
var p_mark_ll = mark.__latlng;
var p_mark = this._map.latLngToLayerPoint(p_mark_ll);
// base - marker line
var l_d = Array(p_base_ll,p_mark_ll);
// marker point when hecs
var p_mark_cap = new L.Point(p_mark.x,p_mark.y-10*mark._altitude);
var p_mark_cap_ll = this._map.layerPointToLatLng(p_mark_cap);
var p_mark_cap_t = new L.Point(p_mark.x,p_mark.y-100);
var p_mark_cap_t_ll = this._map.layerPointToLatLng(p_mark_cap_t);
var p_mark_cap_b = new L.Point(p_mark.x,p_mark.y+100);
var p_mark_cap_b_ll = this._map.layerPointToLatLng(p_mark_cap_b);
var p_mark_cap_l = new L.Point(p_mark.x-50/2,p_mark.y);
var p_mark_cap_l_ll = this._map.layerPointToLatLng(p_mark_cap_l);
var p_mark_cap_r = new L.Point(p_mark.x+50/2,p_mark.y);
var p_mark_cap_r_ll = this._map.layerPointToLatLng(p_mark_cap_r);
var l_mark_cap_tb = Array(p_mark_cap_t_ll,p_mark_cap_b_ll);
var l_mark_cap_lr = Array(p_mark_cap_l_ll,p_mark_cap_r_ll);
if (hecs){
mark.setLatLng(p_mark_cap_ll);
l_d.push(p_mark_cap_ll);
line.setLatLngs(l_d);
mark.setTooltipContent('h<sub>'+mark._index+'</sub>= '+mark._altitude+' m');
}else{
mark.setLatLng(p_mark_ll);
line.setLatLngs(l_d);
var distance = p_base_ll.distanceTo(p_mark_ll).toFixed(1);
mark.setTooltipContent('d<sub>'+mark._index+'</sub>= '+distance+' m');
}
},
_updateMeasureMarkers: function(){
if (this._measureMarkers==undefined) return;
var self = this;
this._measureMarkers.forEach(function(c,i){
self._updateMeasureMarker(i,false);
});
},
setMarkerPoint: function(param,index){
var latlng = param; var latlng = param;
var hecs = false;
var ignore_hecs = false;
if (param.target){ if (param.target){
index = this.draggedMarker._index; index = this.draggedMarker._index;
latlng = param.latlng; latlng = param.latlng;
ignore_hecs = false;
hecs = this.getHCState();
// prevent image getting grabbed by browser // prevent image getting grabbed by browser
param.originalEvent.preventDefault(); param.originalEvent.preventDefault();
} }
// base
var p1_ll = this._latlng; var p1_ll = this._latlng;
// mouse position
var p2_ll = latlng; var p2_ll = latlng;
var l_d = Array(p1_ll,p2_ll);
this._measureMarkers[index].setLatLng(latlng); if (hecs){
this._measureLines[index].setLatLngs(l_d);
var p1 = this._map.latLngToLayerPoint(this._measureMarkers[index].__latlng);
var p2 = this._map.latLngToLayerPoint(p2_ll);
// vertical only movement
p2.x = p1.x;
this._measureMarkers[index]._altitude = (p1.y - p2.y)/10;
//console.log(this._measureMarkers[index]._altitude);
latlng = this._measureMarkers[index].__latlng;
}else{
this._measureMarkers[index].__latlng = latlng;
var distance = p2_ll.distanceTo(p1_ll).toFixed(1); }
this._measureMarkers[index]._tooltip.setContent(distance+' m');
// why does this need an update?
this.draggedMarker = { this.draggedMarker = {
_index: index, _index: index,
_latlng: latlng _latlng: latlng
}; };
this._syncMeasureMarkersToBasePoint(); this._updateMeasureMarker(index,ignore_hecs);
// don't have to sync all
//this._syncMeasureMarkersToBasePoint();
}, },
...@@ -186,7 +333,7 @@ ...@@ -186,7 +333,7 @@
this._slidingMarker.setLatLng(p2_ll); this._slidingMarker.setLatLng(p2_ll);
this._slidingLine.setLatLngs(l_d); this._slidingLine.setLatLngs(l_d);
this._slidingMarker._tooltip.setContent(distance.toFixed(1)+' m'); this._slidingMarker.setTooltipContent(distance.toFixed(1)+' m');
} }
...@@ -212,6 +359,23 @@ ...@@ -212,6 +359,23 @@
}, },
/*
* this function is used a lot in the parent class
*/
_updateCameraViewMarker: function(){
// this.h_control & this._altitude
if (this.h_control){
this._updateCameraViewMarker_hc();
}else{
this._updateCameraViewMarker_nohc();
}
this._updateMeasureMarkers();
},
_initCVM_M: function(){ _initCVM_M: function(){
this._measuring = false; this._measuring = false;
...@@ -285,20 +449,20 @@ ...@@ -285,20 +449,20 @@
_syncMeasureMarkersToBasePoint: function(e){ _syncMeasureMarkersToBasePoint: function(e){
if (this._measureMarkers.length!=0){ if (this._measureMarkers.length!=0){
if (this._measureBase!=this._latlng){ if (
(this._measureBase.lat!=this._latlng.lat)&&
(this._measureBase.lng!=this._latlng.lng)
){
var self = this; var self = this;
this._measureMarkers.forEach(function(c,i){ this._measureMarkers.forEach(function(c,i){
var p1_ll = self._latlng; var p1_ll = self._latlng;
var p2_ll = c.getLatLng(); var p2_ll = c.__latlng;
var l_d = Array(p1_ll,p2_ll);
self._measureLines[i].setLatLngs(l_d); //self.setMarkerPoint(p2_ll,i);
var distance = p2_ll.distanceTo(p1_ll).toFixed(1);
c._tooltip.setContent(distance+' m');
}); });
this._measureBase=this._latlng; this._measureBase=this._latlng;
...@@ -313,7 +477,7 @@ ...@@ -313,7 +477,7 @@
this.draggedMarker = { this.draggedMarker = {
_index: e.target._index, _index: e.target._index,
_latlng: e.target._latlng _latlng: e.target.__latlng
}; };
this._map.dragging.disable(); this._map.dragging.disable();
...@@ -321,8 +485,7 @@ ...@@ -321,8 +485,7 @@
this._map.off('mousemove',this._mouseMove,this); this._map.off('mousemove',this._mouseMove,this);
this._map.off('click',this._mouseClick,this); this._map.off('click',this._mouseClick,this);
this._map.on('mousemove',this.moveMeasureMarker,this); this._map.on('mousemove',this.setMarkerPoint,this);
this._map.on ('mouseup',this._mouseUp_M,this); this._map.on ('mouseup',this._mouseUp_M,this);
} }
...@@ -330,7 +493,7 @@ ...@@ -330,7 +493,7 @@
_mouseUp_M: function(){ _mouseUp_M: function(){
this._map.off('mousemove',this.moveMeasureMarker,this); this._map.off('mousemove',this.setMarkerPoint,this);
this._map.dragging.enable(); this._map.dragging.enable();
......
...@@ -155,6 +155,15 @@ LeafletObject.prototype.dehighlightMarker = function(index){ ...@@ -155,6 +155,15 @@ LeafletObject.prototype.dehighlightMarker = function(index){
} }
LeafletObject.prototype.dehighlightMarkers = function(){
// check if marker exists, it can be removed a moment before.
for(var i=0;i<Data.markers.length;i++){
if (!this.marker._measureMarkers[i]._selected) this.dehighlightMarker(i);
}
}
LeafletObject.prototype.toggleMarker = function(index){ LeafletObject.prototype.toggleMarker = function(index){
//console.log("Toggling "+index); //console.log("Toggling "+index);
......
...@@ -655,12 +655,26 @@ function leaf_mouseup(e){ ...@@ -655,12 +655,26 @@ function leaf_mouseup(e){
Camera._map.off('mousemove',leaf_mousemove,Camera); Camera._map.off('mousemove',leaf_mousemove,Camera);
Camera._map.off('mousemove',leaf_mouseup,Camera); Camera._map.off('mousemove',leaf_mouseup,Camera);
//Map.dehighlightMarkers();
var index = Camera.draggedMarker._index;
var elem = $("#my-sph-"+index);
X3DOMObject.Marker.dehighlight(elem);
Map.dehighlightMarker(index);
Camera.draggedMarker._index = null; Camera.draggedMarker._index = null;
} }
function leaf_mousemove(e){ function leaf_mousemove(e){
var Camera = Map.marker;
if (Camera.draggedMarker._index!=null){
var index = Camera.draggedMarker._index;
var elem = $("#my-sph-"+index);
X3DOMObject.Marker.highlight(elem);
Map.highlightMarker(index);
}
// update Scene dragged marker position // update Scene dragged marker position
leaf_drag_marker(); leaf_drag_marker();
...@@ -761,6 +775,8 @@ function leaf_update_x3dom_marker(p1_ll,p2_ll,index){ ...@@ -761,6 +775,8 @@ function leaf_update_x3dom_marker(p1_ll,p2_ll,index){
var mark = Data.markers[index]; var mark = Data.markers[index];
var hecs = Map.marker.getHCState();
mark.latitude = p2_ll.lat; mark.latitude = p2_ll.lat;
mark.longitude = p2_ll.lng; mark.longitude = p2_ll.lng;
...@@ -774,9 +790,11 @@ function leaf_update_x3dom_marker(p1_ll,p2_ll,index){ ...@@ -774,9 +790,11 @@ function leaf_update_x3dom_marker(p1_ll,p2_ll,index){
mark.x = dp_w.x; mark.x = dp_w.x;
mark.z = dp_w.z; mark.z = dp_w.z;
mark.d_map = distance; if(!hecs){
mark.d_map = distance;
}
X3DOMObject.Marker.place(mark.x,mark.y,mark.z,"my-sph-"+index); //X3DOMObject.Marker.place(mark.x,mark.y,mark.z,"my-sph-"+index);
} }
......
...@@ -838,7 +838,11 @@ X3DOMObject.Marker.mouseMove = function(event){ ...@@ -838,7 +838,11 @@ X3DOMObject.Marker.mouseMove = function(event){
Scene.markerdragged = true; Scene.markerdragged = true;
X3DOMObject.Marker.highlight(Scene.draggedTransformNode.parent().parent()); var sphere = Scene.draggedTransformNode.parent().parent();
var index = parseInt(sphere.attr("id").substr(7));
X3DOMObject.Marker.highlight(sphere);
Map.highlightMarker(index);
//offsetX / offsetY polyfill for FF //offsetX / offsetY polyfill for FF
var target = event.target || event.srcElement; var target = event.target || event.srcElement;
...@@ -936,7 +940,7 @@ X3DOMObject.Marker.slide = function(index,x,y,z){ ...@@ -936,7 +940,7 @@ X3DOMObject.Marker.slide = function(index,x,y,z){
X3DOMObject.displayMarkInfo(index); X3DOMObject.displayMarkInfo(index);
X3DOMObject.displayInfo({}); X3DOMObject.displayInfo({});
Map.marker.moveMeasureMarker(p2_ll,index); Map.marker.setMarkerPoint(p2_ll,index);
} }
...@@ -1108,16 +1112,29 @@ X3DOMObject.MapMarker.registerEvents = function(map_mark){ ...@@ -1108,16 +1112,29 @@ X3DOMObject.MapMarker.registerEvents = function(map_mark){
}else{ }else{
/*
X3DOMObject.Marker.toggle(elem); X3DOMObject.Marker.toggle(elem);
Map.toggleMarker(index); Map.toggleMarker(index);
*/
/*
X3DOMObject.Marker.highlight(elem); X3DOMObject.Marker.highlight(elem);
Map.highlightMarker(index); Map.highlightMarker(index);
*/
} }
}); });
map_mark.on('click',function(e){
var index = this._index;
var elem = $("#my-sph-"+index);
if (!e.originalEvent.ctrlKey){
X3DOMObject.Marker.toggle(elem);
Map.toggleMarker(index);
}
});
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment