13 lines
375 B
HTML
13 lines
375 B
HTML
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
var file = window.location.href;
|
|
var urlRe=/\?language=(.*)/g;
|
|
var chunk=file.match(urlRe);
|
|
if(chunk) chunk=chunk[0].split('=').pop();
|
|
file="local"; window.location.href = 'index-osm.html?origin='+ file + '&map=osm&osmserver=';
|
|
</script>
|
|
</head>
|
|
</html>
|
|
|