Skip to content
Snippets Groups Projects
Commit 9b60b37f authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Änderungen an der Positionsbestimmung

* Knopf eingefügt mit dem man das zentrieren der Karte auf der eigenen Position deaktivieren kann
* Möglichkeit für sich ausblendende Hinweistexte an den Knöpfen eingebaut.
* Knopf für die Positionsbestimmung auch auf großen Bildschirmen freigeschaltet
parent 1e2a469e
No related branches found
No related tags found
No related merge requests found
Source diff could not be displayed: it is too large. Options to address this: view the blob.
Source diff could not be displayed: it is too large. Options to address this: view the blob.
Source diff could not be displayed: it is too large. Options to address this: view the blob.
Source diff could not be displayed: it is too large. Options to address this: view the blob.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -10,6 +10,35 @@ body {
width: 2em;
}
#location-tool {
position: absolute;
bottom: 0;
left: 10px;
font-size: 20px;
}
#location-tool > li > span.button {
background-color: rgba(255, 255, 255, 0.35);
padding: 8px 4px;
border-radius: 6px;
color: black;
cursor: pointer;
}
#location-tool > li.active >span.button {
color: #2881cc;
}
#location-tool > li > span.info {
font-size: 14px;
background-color: white;
color: black;
padding: 3px;
border-radius: 7px;
}
/*
#follow-location {
position: absolute;
cursor: pointer;
......@@ -23,6 +52,7 @@ body {
font-size: 20px;
line-height: 1;
}
*/
#results .result {
border: 1px solid lightgrey;
......
......@@ -7,6 +7,7 @@ var popupOverlay;
var vectorLayer;
var id = null;
var userPositionMarker = null;
var lockViewToPosition = true;
var moveFunction = function(){
var q = $("#search input[name=q]").val();
if(q !== ""){
......@@ -17,7 +18,7 @@ var moveFunction = function(){
var url = '/' + q + '/' + encodeURI(extent[0]) + '/' + encodeURI(extent[1]) + '/' + encodeURI(extent[2]) + '/' + encodeURI(extent[3]+'/'+false+'/50');
$.getScript(url);
}
}
};
$(document).ready(function() {
// Initialize the Map
initMap();
......@@ -33,9 +34,12 @@ $(document).ready(function() {
updateCloserPosition();
});
$("#follow-location").click(function(){
$("#follow-location > span.button").click(function(){
followLocation();
});
$("#lock-location > span.button").click(function(){
toggleViewLock();
});
});
......@@ -50,11 +54,11 @@ function success(pos) {
map.getView().setCenter(ol.proj.transform([crd.longitude, crd.latitude], 'EPSG:4326', 'EPSG:3857'));
map.getView().setZoom(12);
updateMapExtent();
};
}
function error(err) {
console.warn('ERROR(' + err.code + '): ' + err.message);
};
}
function receiveLocation() {
navigator.geolocation.getCurrentPosition(success, error, options);
......@@ -196,6 +200,10 @@ function addMarker(el, pos){
function followLocation(){
// Element to be displayed at the user-location
var el = $('<span id="user-position" class="glyphicon glyphicon-record" style="color: #2881cc;"></span>');
if(lockViewToPosition)
$("#lock-location").addClass("active");
else
$("#lock-location").removeClass("active");
if(id === null){
id = navigator.geolocation.watchPosition(function(position) {
......@@ -227,12 +235,18 @@ function followLocation(){
});
map.addLayer(userPositionMarker);
// Fit the Extent of the Map to Fit the new Features Exactly
map.getView().fitExtent(userPositionMarker.getSource().getExtent(), map.getSize());
if(lockViewToPosition){
// Fit the Extent of the Map to Fit the new Features Exactly
map.getView().fitExtent(userPositionMarker.getSource().getExtent(), map.getSize());
}
// Change the color of the Icon so the user knows that the position is tracked:
$("#follow-location").css("color", "#2881cc");
$("#follow-location").addClass("active");
}, function(error){}, options);
// Show the Lock View to Position Button
$("#lock-location").removeClass("hidden");
$("#lock-location > span.info").fadeOut(2000);
}else{
map.removeLayer(userPositionMarker);
userPositionMarker = null;
......@@ -240,6 +254,25 @@ function followLocation(){
id = null;
// Clear the color of the Icon so the user knows that the position is no longer tracked
$("#follow-location").css("color", "black");
$("#follow-location").removeClass("active");
// Hide the lock View to Position Button
$("#lock-location").addClass("hidden");
$("#lock-location > span.info").css("display", "");
}
}
function toggleViewLock() {
if(lockViewToPosition){
lockViewToPosition = false;
$("#lock-location").removeClass("active");
$("#lock-location > span.info").html("Ansicht freigegeben");
$("#lock-location > span.info").css("display", "");
$("#lock-location > span.info").fadeOut(2000);
}else{
lockViewToPosition = true;
$("#lock-location").addClass("active");
$("#lock-location > span.info").html("Ansicht zentriert");
$("#lock-location > span.info").css("display", "");
$("#lock-location > span.info").fadeOut(2000);
}
}
......@@ -75,7 +75,10 @@
</div>
<div class="col-xs-11 col-sm-6 col-md-3 hidden" data-status="in" id="results">
</div>
<div id="follow-location" class="visible-xs"><span class="glyphicon glyphicon-record"></span></div>
<ul id="location-tool" class="list-unstyled">
<li id="lock-location" class="hidden"><span class="button glyphicon glyphicon-lock"></span><span class="info">Ansicht zentriert</span></li>
<li id="follow-location"><span class="button glyphicon glyphicon-record"></span></li>
</ul>
</main>
<script>
var boundings = {{$boundings}};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment