Benutzer:Kolossos/osm.js
Zur Navigation springen
Zur Suche springen
Hinweis: Leere nach dem Veröffentlichen den Browser-Cache, um die Änderungen sehen zu können.
- Firefox/Safari: Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Strg+F5 oder Strg+R (⌘+R auf dem Mac) drücken
- Google Chrome: Umschalttaste+Strg+R (⌘+Umschalttaste+R auf dem Mac) drücken
- Edge: Strg+F5 drücken oder Strg drücken und gleichzeitig Aktualisieren anklicken
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Wikipedia on OpenStreetMap</title>
<?php
#Contributors: Kolossos, Peter Körner, Alexrk2, Magnus Manske, master
#Supporters: river, Raymond, 32X, Markus B., ALE!, Stefan Kühn, dispenser, ...
require_once ( "geo_param.php" ) ;
include "mapsources.php" ;
$TSisDOWN=0;
function translate($word,$lang)
{
include "kml-on-ol.i18n.php";
$withprefix="ts-kml-on-ol-".$word;
$a=$messages[$lang][$withprefix];
if (!isset($a)){$a=$messages['en'][$withprefix];}
#print_r ($messages);
#echo "<!---".$a."-| $withprefix -->";
return $a;
}
function detect_not_ie()
{
if (isset($_SERVER['HTTP_USER_AGENT']) &&
(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false))
return false;
else
return true;
}
$lang=addslashes(urldecode($_GET[lang]));
$uselang=addslashes(urldecode($_GET[uselang]));
if ($uselang=="") {$uselang=$lang;}
if ($lang=="wikidata") {$langwiki=$uselang;} else {$langwiki=$lang;}
$thumbs=addslashes($_GET[thumbs]);
if (($thumbs=="no") or ($thumbs=="yes")) {$thumbsinsert=", 'thumbs' : '$thumbs'";} else {$thumbsinsert=", 'thumbs' : '0'";}
$coats=addslashes($_GET[coats]);
if (($coats=="no") or ($coats=="yes")) {$coatsinsert=", 'coats' : '$coats'";} else {$coatsinsert=", 'coats' : '0'";}
$pop=addslashes($_GET[pop]);
if (($pop<>"")) {$popinsert=", 'pop' : '$pop'";}
$style=addslashes($_GET[style]);
if (($style<>"")) {$styleinsert=", 'style' : '$style'";}
$photo=addslashes($_GET[photo]);
if (($photo=="no") or ($photo=="yes")) {$photoinsert=", 'photo' : '$photo'";}
$source=addslashes($_GET[source]);
if (($source<>"")) {$sourceinsert=", 'source' : '$source'";}
$notsource=addslashes($_GET[notsource]);
if (($notsource<>"")) {$notsourceinsert=", 'notsource' : '$notsource'";}
$title=urldecode($_GET[title]);
$action=addslashes(urldecode($_GET[action]));
$title=urldecode($_GET[title]);
if ($title=="") {$title=urldecode($_GET[pagename]);} #hack for nl.wp
$classes=urldecode($_GET[classes]);
if ($classes<>"") {$classesinsert=", 'classes' : '$classes'";}
// Geohack
if ( isset ( $_REQUEST['params'] ) ) {
$p = new geo_param( $_REQUEST['params'] , "Dummy" ); ;
$x = floatval($p->londeg) ;
$y = floatval($p->latdeg) ;
$type = substr($p->type,0,10) ;
$dim= floatval($p->dim) ;
}
$theparams =$_REQUEST['params'];
$typeleftcut = strstr($theparams,"type:");
$type = substr ($typeleftcut, 5 );
if (strpos($type,"(")>0) {$type = substr($type,0,strpos($type,"("));}
if (strpos($type,"_")>0) {$type = substr($type,0,strpos($type,"_"));}
$default_scale = array(
'country' => 10000000, # 10 mill
'satellite' => 10000000, # 10 mill
'state' => 3000000, # 3 mill
'adm1st' => 1000000, # 1 mill
'adm2nd' => 300000, # 300 thousand
'adm3rd' => 100000, # 100 thousand
'city' => 100000, # 100 thousand
'isle' => 100000, # 100 thousand
'mountain' => 100000, # 100 thousand
'river' => 100000, # 100 thousand
'waterbody' => 100000, # 100 thousand
'event' => 50000, # 50 thousand
'forest' => 50000, # 50 thousand
'glacier' => 50000, # 50 thousand
'airport' => 30000, # 30 thousand
'railwaystation' => 10000, # 10 thousand
'edu' => 10000, # 10 thousand
'pass' => 10000, # 10 thousand
'landmark' => 10000 # 10 thousand
);
$zoomtype=18 - ( round(log($default_scale[$type],2) - log(1693,2)) );
$dimleftcut = strstr($theparams,"dim:");
$dim = substr ($dimleftcut, 4 );
if (strpos($dim,"(")>0) {$dim = substr($dim,0,strpos($dim,"("));}
if (strpos($dim,"_")>0) {$dim = substr($dim,0,strpos($dim,"_"));}
$dim = floatval(str_replace(array("km","m"),array("000",""),$dim));
if ($dim>0)
{$zoomtype=18 - ( round(log($dim/0.1,2) - log(1693,2)) );}
if ($zoomtype>18) {$zoom=18;$zoomtype=18;}
if ($zoomtype>2 ) {$zoom=$zoomtype;} else {$zoom=12;}
$position= " var zoom = $zoom;";
if ($x<>""){$position.="
args.lon = $x;
args.lat = $y; ";}
echo "<!-- //position:".$position."\n dim:".$dim."\n zoomtype:".$zoomtype." -->\n";
// Geohack end
?>
<script src="//tools.wmflabs.org/osm/libs/jquery/latest/jquery-min.js" type="text/javascript"></script>
<script src="//tools.wmflabs.org/osm/libs/openlayers/2.12/OpenLayers-min.js" type="text/javascript"></script>
<!--script src="//openlayers.org/dev/OpenLayers.js" type="text/javascript"></script-->
<!--script src="//toolserver.org/~osm/libs/openstreetmap/latest/OpenStreetMap.js" type="text/javascript"></script-->
<script src="./Lang/<?php echo $uselang;?>.js" type="text/javascript"></script>
<script type="text/javascript">
// map object
var map;
var poiLayerHttp;
var pois;
var osmLabelsLang;
var forcelocal;
<?php echo "var lang = '$lang';";?>
if(lang=="hsb"||lang=="ru") {forcelocal=true;} else {forcelocal=false;}
// initiator
function init()
{
OpenLayers.Lang.setCode('<?php echo $uselang;?>');
/*
// show an error image for missing tiles
OpenLayers.Util.onImageLoadError = function()
{
if(urlRegex.test(this.src))
{
var style = RegExp.$2;
if(style == 'osm'||style == 'osm-no-labels')
{
var tile = RegExp.$3;
var inst = RegExp.$1;
this.src = '//'+inst+'.tile.openstreetmap.org/'+tile;;
if(window.console && console.log)
console.log('redirecting request for '+tile+' to openstreetmap.org: '+this.src);
return;
}
if(style == 'osm-labels-ru')
{
this.src = '//toolserver.org/~osm/libs/openlayers/latest/img/blank.gif';
return;
}
this.src = '//www.openstreetmap.org/openlayers/img/404.png';
}
};
*/
// get the request-parameters
var args = OpenLayers.Util.getParameters();
// main map object
map = new OpenLayers.Map ("map", {
controls: [
new OpenLayers.Control.Navigation(),
new OpenLayers.Control.PanZoomBar(),
new OpenLayers.Control.Attribution(),
new OpenLayers.Control.LayerSwitcher(),
new OpenLayers.Control.Permalink(),
new OpenLayers.Control.ScaleLine({geodesic:true})
//new OpenLayers.Control.KeyboardDefaults()
],
// mercator bounds
maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34),
maxResolution: 156543.0399,
numZoomLevels: 19,
units: 'm',
projection: new OpenLayers.Projection("EPSG:900913"),
displayProjection: new OpenLayers.Projection("EPSG:4326")
});
// create the custom layer
OpenLayers.Layer.OSM.Toolserver = OpenLayers.Class(OpenLayers.Layer.OSM, {
initialize: function(name, options) {
var url = [
"//a.toolserver.org/tiles/" + name + "/${z}/${x}/${y}.png",
"//b.toolserver.org/tiles/" + name + "/${z}/${x}/${y}.png",
"//c.toolserver.org/tiles/" + name + "/${z}/${x}/${y}.png"
];
options = OpenLayers.Util.extend({numZoomLevels: 19}, options);
OpenLayers.Layer.OSM.prototype.initialize.apply(this, [name, url, options]);
},
CLASS_NAME: "OpenLayers.Layer.OSM.Toolserver"
});
//Place for osm.org
<?php if (empty($_SERVER["HTTP_X_TS_SSL"]) or $TSisDOWN)
{echo "map.addLayer(new OpenLayers.Layer.OSM('OSM .org'),'//openstreetmap.org/".'${z}/${x}/${y}'.".png', {visibility: true ,transitionEffect: 'resize'});";
}?>
var urlRegex = new RegExp('^//([abc]).toolserver.org/tiles/([^/]+)/(.*)$');
var osm = new OpenLayers.Layer.OSM.Toolserver('osm', {
attribution:'<?php echo translate('map-by',$uselang);?> <a target="_blank" href="//www.openstreetmap.org/copyright"><?php echo translate('openstreetmap',$uselang);?></a> (<a target="_blank" href="//creativecommons.org/publicdomain/zero/1.0/">CC0</a>)',
transitionEffect: 'resize',
tileOptions: {
'eventListeners': {
'loaderror': function(evt) {
if(urlRegex.test(this.url))
{
var style = RegExp.$2;
if(style == 'osm'||style == 'osm-no-labels')
{
var tile = RegExp.$3;
var inst = RegExp.$1;
this.setImgSrc('//'+inst+'.tile.openstreetmap.org/'+tile);
if(window.console && console.log)
console.log('redirecting request for '+tile+' to openstreetmap.org: '+this.url);
// alert ('test:URL' + this.url + ' //'+inst+'.tile.openstreetmap.org/'+tile );
return;
}
if(style == 'osm-labels-ru')
{
this.setImgSrc('//toolserver.org/~osm/libs/openlayers/latest/img/blank.gif');
return;
}
this.setImgSrc('//www.openstreetmap.org/openlayers/img/404.png');
}
}
},
crossOriginKeyword: null
}
})
osm.setIsBaseLayer(true);
osm.setVisibility(false);
map.addLayer(osm);
var osmNoLabels = new OpenLayers.Layer.OSM.Toolserver('osm-no-labels',{
attribution:'<?php echo translate('map-by',$uselang);?> <a target="_blank" href="//www.openstreetmap.org/"><?php echo translate('openstreetmap',$uselang);?></a> (<a target="_blank" href="//opendatacommons.org/licenses/odbl/">ODbL</a>)',
visibility: false,
tileOptions: { crossOriginKeyword: null }
} ,
{isBaseLayer:true });
osmNoLabels.setIsBaseLayer(true);
osmNoLabels.setVisibility(false);
map.addLayer(osmNoLabels);
// add the osm.org layers
<?php if (!(empty($_SERVER["HTTP_X_TS_SSL"]) or $TSisDOWN))
{echo "map.addLayer(new OpenLayers.Layer.OSM('OSM .org'),'//openstreetmap.org/".'${z}/${x}/${y}'.".png', {visibility: true ,transitionEffect: 'resize'});";
}?>
map.addLayer(new OpenLayers.Layer.OSM.Toolserver('hikebike', { tileOptions: { crossOriginKeyword: null },transitionEffect: 'resize',attribution:'<?php echo translate('map-by',$uselang);?> <a target="_blank" href="//www.openstreetmap.org/copyright"><?php echo translate('openstreetmap',$uselang);?></a> (<a target="_blank" href="//creativecommons.org/publicdomain/zero/1.0/">CC-0</a>)' } ));
map.addLayer(new OpenLayers.Layer.OSM("Public Transport (ÖPNV)",
"http://tile.memomaps.de/tilegen/${z}/${x}/${y}.png", {visibility: false, tileOptions: { crossOriginKeyword: null },transitionEffect: 'resize' }));
map.addLayer(new OpenLayers.Layer.OSM("Satellite",
"http://services.opengeoserver.org/tiles/1.0.0/globe.aerial_EPSG3857/${z}/${x}/${y}.png?origin=nw",
{attribution:' <a target="_blank" href="//opengeoserver.org/">OpenGeoServer.org</a>',
visibility: false, tileOptions: { crossOriginKeyword: null },transitionEffect: 'resize' }));
//map.addLayer(new OpenLayers.Layer.OSM("hires",
// "//mull.geofabrik.de/osm2x/${z}/${x}/${y}.png",
// {attribution:' <a target="_blank" href="//www.geofabrik.de">Geofabrik experiemental</a>',
// visibility: false, tileOptions: { crossOriginKeyword: null },transitionEffect: 'resize' }));
<?php if($lang=="de" and empty($_SERVER["HTTP_X_TS_SSL"])) {echo "map.addLayer(new OpenLayers.Layer.OSM('germany','http://tile.openstreetmap.de/tiles/osmde/".'${z}/${x}/${y}'.".png', {visibility: false, tileOptions: { crossOriginKeyword: null },transitionEffect: 'resize' }));";}?>
osmLabelsLang = new OpenLayers.Layer.OSM.Toolserver('osm-labels-<?php echo $lang;?>', {isBaseLayer: false, visibility: false, tileOptions: { crossOriginKeyword: null }, attribution:''});
map.addLayers([osmLabelsLang]);
// Wikipedia-World Layer
var bboxStrategy = new OpenLayers.Strategy.BBOX( {
ratio : 1.1,
resFactor: 1
});
poiLayerHttp = new OpenLayers.Protocol.HTTP({
url: "//tools.wmflabs.org/wp-world/marks.php?",
params: { 'LANG' : <?php echo "'".$langwiki."'".$coatsinsert.$thumbsinsert.$popinsert.$styleinsert.$photoinsert.$sourceinsert.$notsourceinsert.$classesinsert;?>},
format: new OpenLayers.Format.KML({
extractStyles: true,
extractAttributes: true
})
});
pois = new OpenLayers.Layer.Vector("Wikipedia World", {
attribution:'<a target="_blank" href="//de.wikipedia.org/wiki/Wikipedia:WikiProjekt_Georeferenzierung/Wikipedia-World/en"><?php echo translate('wikipedia',$uselang);?></a> (CC-BY-SA)',
projection: new OpenLayers.Projection("EPSG:4326"),
strategies: [bboxStrategy],
protocol: poiLayerHttp
});
map.addLayer(pois);
<?php
if ($title and detect_not_ie()){
if ($action=='purge') {$actionurl="&action=purge";}
$vecfile='"'."//tools.wmflabs.org/wiwosm/osmjson/getGeoJSON.php?lang=$lang&article=".rawurlencode($title).$actionurl.'"';
print <<<END
//OSM objects Layer : Object with the Wikipedia-Tag matching with article-name
var styleMap = new OpenLayers.StyleMap({'pointRadius': 7,
'strokeWidth': 3,
'strokeColor': '#ff0000',
'fillColor': '#ff0000',
'fillOpacity': .3
});
var vector_layer = new OpenLayers.Layer.Vector("OSM objects (loading...)",{
styleMap: styleMap,
attribution:' <a target="_blank" href="//wiki.openstreetmap.org/wiki/WIWOSM">WIWOSM</a> (<a target="_blank" href="//opendatacommons.org/licenses/odbl/">ODbL</a>) '
});
map.addLayer(vector_layer);
var JSONurl = $vecfile;
//alert ("$lang $title");
var p = new OpenLayers.Format.GeoJSON();
OpenLayers.Request.GET({url:JSONurl,
callback:function (response) {
if(response.status == 404) {
vector_layer.setVisibility(false);
vector_layer.setName("OSM objects (not found)");
}
else {
var gformat = new OpenLayers.Format.GeoJSON();
gg = '{"type":"FeatureCollection", "features":[{"geometry": ' +
response.responseText + '}]}';
var feats = gformat.read(gg);
vector_layer.addFeatures(feats);
vector_layer.setName("OSM objects (WIWOSM)");
document.title = args.title+" on OpenStreetMap";
if (vector_layer.getDataExtent().getHeight()>500)
{ map.zoomToExtent (vector_layer.getDataExtent(),false);}
if (!args.lon && vector_layer.getDataExtent().getHeight()<=500)
{map.setCenter (vector_layer.getDataExtent().getCenterLonLat(),17);}
}
}}
);
END;
}
?>
var feature = null;
var highlightFeature = null;
var tooltipTimeout = false;
var lastFeature = null;
var selectPopup = null;
var tooltipPopup = null;
var selectCtrl = new OpenLayers.Control.SelectFeature(pois, {
toggle:true,
clickout: true
});
pois.events.on({ "featureselected": onMarkerSelect, "featureunselected": onMarkerUnselect});
map.events.register("zoomend", map, zoomEnd);
function onMarkerSelect (evt) {
eventTooltipOff(evt);
if(selectPopup != null) {
map.removePopup(selectPopup);
selectPopup.feature=null;
if(feature != null && feature.popup != null){
feature.popup = null;
}
}
feature = evt.feature;
//console.log("feature selected", feature) ;
//console.log("features in layer", pois.features.length);
selectPopup = new OpenLayers.Popup.AnchoredBubble("activepopup",
feature.geometry.getBounds().getCenterLonLat(),
new OpenLayers.Size(220,170),
text='<b>'+feature.attributes.name +'</b><br>'+ feature.attributes.description,
null, true, onMarkerPopupClose );
selectPopup.closeOnMove = false;
selectPopup.autoSize = false;
feature.popup = selectPopup;
selectPopup.feature = feature;
map.addPopup(selectPopup);
}
function onMarkerUnselect (evt) {
feature = evt.feature;
if(feature != null && feature.popup != null){
selectPopup.feature = null;
map.removePopup(feature.popup);
feature.popup = null;
}
}
function onMarkerPopupClose(evt) {
if(selectPopup != null) {
map.removePopup(selectPopup);
selectPopup.feature = null;
if(feature != null && feature.popup != null) {
feature.popup = null;
}
}
selectCtrl.unselectAll();
}
var highlightCtrl = new OpenLayers.Control.SelectFeature(pois, {
hover: true,
highlightOnly: true,
renderIntent: "temporary",
eventListeners: {
featurehighlighted: eventTooltipOn,
featureunhighlighted: eventTooltipOff
}
});
function eventTooltipOn (evt) {
highlightFeature = evt.feature;
if(tooltipPopup != null) {
map.removePopup(tooltipPopup);
tooltipPopup.feature=null;
if(lastFeature != null) {
lastFeature.popup = null;
}
}
lastFeature = highlightFeature;
//document.getElementById("map_OpenLayers_Container").style.cursor = "pointer";
tooltipPopup = new OpenLayers.Popup("activetooltip",
highlightFeature.geometry.getBounds().getCenterLonLat(),
new OpenLayers.Size(220,20),
highlightFeature.attributes.name, null, false, null );
if(tooltipTimeout) clearTimeout(tooltipTimeout);
tooltipPopup.closeOnMove = true;
tooltipPopup.autoSize = true;
map.addPopup(tooltipPopup);
}
function eventTooltipOff (evt) {
highlightFeature = evt.feature;
//document.getElementById("map_OpenLayers_Container").style.cursor = "default";
if(tooltipPopup)
{
tooltipTimeout = setTimeout(function() {
map.removePopup(tooltipPopup);
tooltipPopup = null;
}, 500);
}
if(highlightFeature != null && highlightFeature.popup != null){
map.removePopup(highlightFeature.popup);
highlightFeature.popup = null;
tooltipPopup = null;
lastFeature = null;
}
}
function zoomEnd() {
var scale = map.getScale();
//alert (lang);
if (scale>10000000) {
$(".olControlScaleLine").css('display', 'none');
} else {
$(".olControlScaleLine").css('display', 'block');
}
// below zoom 6 we switch from layer "osm" to layer "osm-no-labels" + "osm-labels-de"
if((map.getZoom() <= 6 || forcelocal) && map.baseLayer.id == osm.id)
{
map.setBaseLayer(osmNoLabels);
osmLabelsLang.setVisibility(true);
}
if(map.getZoom() <= 6 || forcelocal)
{
osmLabelsLang.displayInLayerSwitcher=true;
osmNoLabels.displayInLayerSwitcher=true;
}
// above zoom 6 we switch back to the usual osm layer
else if(map.getZoom() > 6 && map.baseLayer.id == osmNoLabels.id && !forcelocal)
{
map.setBaseLayer(osm);
osmLabelsLang.setVisibility(false);
}
if(map.getZoom() > 6 && !forcelocal && map.baseLayer.id == osm.id)
{
osmLabelsLang.displayInLayerSwitcher=false;
osmNoLabels.displayInLayerSwitcher=false;
}
if (map.baseLayer.name=='Satellite' && (forcelocal || lang=='de'))
{osmLabelsLang.setVisibility(true);}
if (!(map.baseLayer.name=='Satellite' || map.baseLayer.id == osmNoLabels.id))
{osmLabelsLang.setVisibility(false);}
}
map.addControl(highlightCtrl);
map.addControl(selectCtrl);
highlightCtrl.activate();
selectCtrl.activate();
zoomEnd();
// default zoon
<?php echo $position;?>
// lat/lon requestes
if(args.lon && args.lat)
{
// zoom requested
if(args.zoom)
{
zoom = parseInt(args.zoom);
var maxZoom = map.getNumZoomLevels();
if (zoom >= maxZoom) zoom = maxZoom - 1;
}
// transform center
var center = new OpenLayers.LonLat(parseFloat(args.lon), parseFloat(args.lat)).
transform(map.displayProjection, map.getProjectionObject())
// move to
map.setCenter(center, zoom);
}
// bbox requestet
else if (args.bbox)
{
// transform bbox
var bounds = OpenLayers.Bounds.fromArray(args.bbox).
transform(map.displayProjection, map.getProjectionObject());
// move to
map.zoomToExtent(bounds)
}
// default center
else
{
// set the default center
var center = new OpenLayers.LonLat(0, 0).
transform(map.displayProjection, map.getProjectionObject());
// move to
map.setCenter(center, zoom);
}
var markers = new OpenLayers.Layer.Markers( "Marker", {
attribution:' <a target="_blank" href="//<?php echo $lang;?>.wikipedia.org/wiki/Help:OpenStreetMap"> <?php echo translate('help',$uselang);?> </a>' } );
map.addLayer(markers);
var size = new OpenLayers.Size(16,16);
var offset = new OpenLayers.Pixel(-(size.w/2), -(size.h/2));
var icon = new OpenLayers.Icon('Ol_icon_red_example.png',size,offset);
markers.addMarker(new OpenLayers.Marker(new OpenLayers.LonLat(map.center.lon,map.center.lat),icon));
map.addLayer(new OpenLayers.Layer.OSM(
'hillshading',
'//toolserver.org/~cmarqu/hill/${z}/${x}/${y}.png',
{ attribution:'NASA',
displayOutsideMaxExtent: true,
isBaseLayer: false,
transparent: true,
visibility: false,
numZoomLevels: 16,
tileOptions: { crossOriginKeyword: null }
}
));
}
function hideInsetMenu() {
$('#mapInsetMenuDropdown').css('visibility', 'hidden');
}
function showInsetMenu() {
$('#mapInsetMenuDropdown').css('visibility', 'visible');
}
$.ajax({
type: "GET",
url: "lang-select.php",
data: "lang=<?php echo $uselang;?>",
success: function(msg){
$('#mapInsetMenuDropdown').empty();
$(msg).appendTo('#mapInsetMenuDropdown');
$(function() {
$('.menuSelect').change(function() {
if ($(this).attr('checked')==true) {
poiLayerHttp.params[$(this).val()] = 'yes';
$('.menuSelect2').prop('checked', false);
poiLayerHttp.params[$('.menuSelect2').val()] = 'no';
} else {
poiLayerHttp.params[$(this).val()] = 'no';
}
pois.redraw(true);
});
});
$(function() {
$('.menuSelect2').change(function() {
if ($(this).attr('checked')==true) {
poiLayerHttp.params[$(this).val()] = 'yes';
$('.menuSelect').prop('checked', false);
poiLayerHttp.params[$('.menuSelect').val()] = 'no';
} else {
poiLayerHttp.params[$(this).val()] = 'no';
}
pois.redraw(true);
});
});
$(function() {
$('.menuSelectlist').change(function() {
poiLayerHttp.params.LANG = $(this).val();
if ($(this).val()!='') {
osmLabelsLang.name="osm-labels-"+$(this).val();
osmLabelsLang.url = [
"//a.toolserver.org/tiles/" + osmLabelsLang.name + "/${z}/${x}/${y}.png",
"//b.toolserver.org/tiles/" + osmLabelsLang.name + "/${z}/${x}/${y}.png",
"//c.toolserver.org/tiles/" + osmLabelsLang.name + "/${z}/${x}/${y}.png"
];
osmLabelsLang.redraw(true);
}
pois.redraw(true);
});
});
}
});
</script>
<style type="text/css">
body {
padding: 0;
margin: 0;
}
.olImageLoadError {
display: none;
}
.olControlAttribution
{
bottom: 5px !important;
right: 80px !important;
}
.olControlPermalink {
bottom: 5px !important;
right: 5px !important;
width: 60px;
text-align: center;
}
.olControlAttribution, .olControlPermalink {
background-color: white;
border-color: black;
border-style: solid;
border-width: 1px;
cursor: pointer;
padding: 2px 4px;
opacity: 0.5;
}
.olPopupContent, .olControlAttribution, .olControlPermalink {
font-family: arial, sans-serif;
font-size: 12px;
}
.olControlAttribution:hover, .olControlPermalink:hover {
opacity: 1.0;
}
.olPopupContent a, .olControlAttribution a, .olControlPermalink a {
color: #0645AD;
text-decoration: none;
}
.olPopupContent a:hover, .olControlAttribution a:hover, .olControlPermalink a:hover {
text-decoration: underline;
}
#activetooltip {
background-color: #ffffcb !important;
overflow: hidden;
border: 1px solid #DBDBD3 !important;
font-family: arial, sans-serif;
font-size: 12px;
height: 8px;
text-align: center;
}
#activetooltip .olPopupContent {
padding: 5px 0 0 0 !important;
}
.olPopupContent {
}
.mapBtnOuter {
border: 1px solid #444;
background-color: #fff;
z-index: 2000;
}
.mapBtnInner {
cursor: pointer;
font-size: 12px;
font-family: arial, sans-serif;
border-color:white #bbb #bbb white;
border-style:solid;
border-width:1px;
padding: 2px 4px 2px 4px ;
}
#mapInsetMenu {
position: absolute;
left: 50px;
top: 7px;
}
div.olLayerDiv {
-khtml-user-select: none;
}
.olControlScaleLineBottom {
display: none;
}
#mapInsetMenuDropdown {
visibility: hidden;
padding: 2px 4px 2px 4px ;
font-size: 12px;
font-family: arial, sans-serif;
background-color: #fff;
border-color: #444;
border-style:solid;
border-width:1px;
position: absolute;
left: -1px;
top: 20px;
width: 250px;
box-shadow: 2px 2px 2px #666;
-moz-box-shadow: 2px 2px 2px #666;
}
</style>
</head>
<body onload="init();">
<div id="mapContainer" style="width: 100%; height: 100%">
<div style="width: 100%; height: 100%" id="map">
</div>
<div id="mapInsetMenu" class="mapBtnOuter" onmouseout="javascript:hideInsetMenu()" onmouseover="javascript:showInsetMenu()">
<div id="mapInsetMenuI" class="mapBtnInner">
<?php echo translate('options',$uselang);?>
</div>
<div id="mapInsetMenuDropdown">
<p>
<b><?php echo translate('thumbnails',$uselang);?></b><br />
<input class="menuSelect" type="checkbox" name="thumbs" value="thumbs"/>
<p>
<b><?php echo "Coats".translate('coat-of-arms',$uselang);?></b><br />
<input class="menuSelect2" type="checkbox" name="CoA" value="thumbs"/>
<br>
<b>
<?php echo translate('languages',$uselang);?>
</b><br />
<select class="menuSelectlist" name="top5" size="5">
<option value=""> ALL </option>
<option value="de">Deutsch</option>
<option value="en">English</option>
</select>
</div>
</div>
</div>
</body>
</html>