mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2025-04-03 09:31:46 +01:00
Remove old commented broken code
Use local resources for markers and openlayers
This commit is contained in:
parent
297db5eb43
commit
8b9e3fc59c
@ -7,7 +7,7 @@
|
|||||||
<meta http-equiv="content-style-type" content="text/css" />
|
<meta http-equiv="content-style-type" content="text/css" />
|
||||||
<meta http-equiv="content-language" content="en" />
|
<meta http-equiv="content-language" content="en" />
|
||||||
|
|
||||||
<script src="http://www.openlayers.org/api/OpenLayers.js"></script>
|
<script src="/javascript/openlayers/OpenLayers.js"></script>
|
||||||
<script src="http://www.openstreetmap.org/openlayers/OpenStreetMap.js"></script>
|
<script src="http://www.openstreetmap.org/openlayers/OpenStreetMap.js"></script>
|
||||||
<script src="util.js"></script>
|
<script src="util.js"></script>
|
||||||
|
|
||||||
@ -17,12 +17,12 @@
|
|||||||
// Position and Zoomlevel of the map
|
// Position and Zoomlevel of the map
|
||||||
var lon = 13.8081;
|
var lon = 13.8081;
|
||||||
var lat = 47.6776;
|
var lat = 47.6776;
|
||||||
var zoom = 14;
|
var zoom = 12;
|
||||||
|
|
||||||
var map;
|
var map;
|
||||||
|
|
||||||
var showPopupOnHover = true;
|
var showPopupOnHover = true;
|
||||||
text = new Array("Show map information","Hide map information");
|
text = new Array("Show instructions","Hide instructions");
|
||||||
|
|
||||||
function drawmap() {
|
function drawmap() {
|
||||||
OpenLayers.Lang.setCode('en');
|
OpenLayers.Lang.setCode('en');
|
||||||
@ -43,31 +43,12 @@ function drawmap() {
|
|||||||
displayProjection: new OpenLayers.Projection("EPSG:4326")
|
displayProjection: new OpenLayers.Projection("EPSG:4326")
|
||||||
} );
|
} );
|
||||||
|
|
||||||
// Display the control elements
|
|
||||||
//map.addControl(new OpenLayers.Control.PanZoomBar());
|
|
||||||
//map.addControl(new OpenLayers.Control.Permalink('permalink'));
|
|
||||||
//map.addControl(new OpenLayers.Control.ScaleLine());
|
|
||||||
//map.addControl(new OpenLayers.Control.LayerSwitcher());
|
|
||||||
|
|
||||||
//checkForPermalink();
|
|
||||||
|
|
||||||
icons = new Array();
|
icons = new Array();
|
||||||
icons[0] = new Array('http://openlayers.org/api/img/marker.png','21','25','0.5','1');
|
icons[0] = new Array('/javascript/openlayers/img/marker.png','21','25','0.5','1');
|
||||||
|
|
||||||
// Display layers
|
// Display layers
|
||||||
|
|
||||||
//layer_markers = new OpenLayers.Layer.Markers("Marker", { projection: new OpenLayers.Projection("EPSG:4326"),visibility: true, displayInLayerSwitcher: false });
|
|
||||||
//layer_vectors = new OpenLayers.Layer.Vector("Zeichnungen", { displayInLayerSwitcher: true } );
|
|
||||||
//map.addLayer(layer_vectors);
|
|
||||||
//map.addLayer(layer_markers)
|
|
||||||
//layers = new Array();
|
|
||||||
//layer_layerMapnik = new OpenLayers.Layer.OSM.Mapnik("Mapnik");
|
|
||||||
//map.addLayer(layer_layerMapnik);
|
|
||||||
//layers.push(new Array(layer_layerMapnik,'layer_layerMapnik'));
|
|
||||||
//layer_layerCyclemap = new OpenLayers.Layer.OSM.CycleMap("Cyclemap");
|
|
||||||
//map.addLayer(layer_layerCyclemap);
|
|
||||||
//layers.push(new Array(layer_layerCyclemap,'layer_layerCyclemap'));
|
|
||||||
|
|
||||||
layerMapnik = new OpenLayers.Layer.OSM.Mapnik("Mapnik");
|
layerMapnik = new OpenLayers.Layer.OSM.Mapnik("Mapnik");
|
||||||
map.addLayer(layerMapnik);
|
map.addLayer(layerMapnik);
|
||||||
|
|
||||||
@ -94,23 +75,22 @@ var gpxStyles = new OpenLayers.StyleMap({
|
|||||||
"default": new OpenLayers.Style({
|
"default": new OpenLayers.Style({
|
||||||
pointRadius: "5", // sized according to type attribute
|
pointRadius: "5", // sized according to type attribute
|
||||||
graphicName: "star",
|
graphicName: "star",
|
||||||
label: "${name}",
|
label: "${name}",
|
||||||
labelAlign: "rb",
|
labelAlign: "rb",
|
||||||
|
|
||||||
//labelAlign: "${align}",
|
//labelAlign: "${align}",
|
||||||
//labelXOffset: "${xOffset}",
|
//labelXOffset: "${xOffset}",
|
||||||
//labelYOffset: "${yOffset}",
|
//labelYOffset: "${yOffset}",
|
||||||
labelOutlineColor: "white",
|
labelOutlineColor: "white",
|
||||||
labelOutlineWidth: 3,
|
labelOutlineWidth: 3,
|
||||||
|
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
fontFamily: "Arial",
|
fontFamily: "Arial",
|
||||||
fontColor: "brown",
|
fontColor: "brown",
|
||||||
labelYOffset: 10,
|
labelYOffset: 10,
|
||||||
fillColor: "black",
|
fillColor: "black",
|
||||||
|
|
||||||
|
strokeColor: "red",
|
||||||
strokeColor: "red",
|
|
||||||
strokeWidth: 3,
|
strokeWidth: 3,
|
||||||
strokeOpacity: 0.8
|
strokeOpacity: 0.8
|
||||||
}),
|
}),
|
||||||
@ -137,7 +117,7 @@ var layerGPX = new OpenLayers.Layer.Vector("Entrances", {
|
|||||||
map.addLayer(layerGPX);
|
map.addLayer(layerGPX);
|
||||||
layers.push(new Array(layerGPX,'layerGPX'));
|
layers.push(new Array(layerGPX,'layerGPX'));
|
||||||
|
|
||||||
// fit map to bounds of window and add start, finish pins (finish not working)
|
// fit map to bounds of window and add start, finish pins (finish not working)
|
||||||
layerGPX.events.register("loadend", layerGPX, function() {
|
layerGPX.events.register("loadend", layerGPX, function() {
|
||||||
this.map.zoomToExtent(this.getDataExtent());
|
this.map.zoomToExtent(this.getDataExtent());
|
||||||
//var startPoint = this.features[0].geometry.components[0];
|
//var startPoint = this.features[0].geometry.components[0];
|
||||||
@ -157,15 +137,8 @@ layers.push(new Array(layerMarkers,'layerMarkers'));
|
|||||||
|
|
||||||
setLayer(1);
|
setLayer(1);
|
||||||
|
|
||||||
// Jump to the right location
|
|
||||||
jumpTo(lon,lat,zoom);
|
|
||||||
|
|
||||||
// Display marker icons
|
|
||||||
//icons = new Array();
|
|
||||||
//icons[0] = new Array('http://openlayers.org/api/img/marker.png','21','25','0.5','1');
|
|
||||||
//icons[4] = new Array('http://osmtools.de/easymap/images/pin_red.png','16','28','0','1');
|
|
||||||
//icons[6] = new Array('http://osmtools.de/easymap/images/pin_green.png','16','28','0','1');
|
|
||||||
//icons[10] = new Array('http://osmtools.de/easymap/images/haus_red.png','20','24','0.5','0.5');
|
|
||||||
|
|
||||||
// Display markers
|
// Display markers
|
||||||
addMarker(layerMarkers,13.8248,47.6884,"<b>Stone Bridge</b><p />Not the real stone bridge: this is a demo",false,0);
|
addMarker(layerMarkers,13.8248,47.6884,"<b>Stone Bridge</b><p />Not the real stone bridge: this is a demo",false,0);
|
||||||
@ -173,6 +146,7 @@ addMarker(layerMarkers,13.8248,47.6884,"<b>Stone Bridge</b><p />Not the real sto
|
|||||||
geometries = new Array();
|
geometries = new Array();
|
||||||
|
|
||||||
// Nochmal was..
|
// Nochmal was..
|
||||||
|
map.setCenter(0, zoom, 1, 1);
|
||||||
jumpTo(lon, lat, zoom);
|
jumpTo(lon, lat, zoom);
|
||||||
toggleInfo();
|
toggleInfo();
|
||||||
checkUtilVersion(4);
|
checkUtilVersion(4);
|
||||||
@ -202,7 +176,7 @@ body {
|
|||||||
-->
|
-->
|
||||||
</style></head>
|
</style></head>
|
||||||
<body onload="drawmap();">
|
<body onload="drawmap();">
|
||||||
<div id="descriptionToggle" onclick="toggleInfo()">Show map information</div>
|
<div id="descriptionToggle" onclick="toggleInfo()">Show instructions</div>
|
||||||
<div id="description" class="hide">Expo prototype slippy map<br >Please mouseover<br >the pin markers.<br ></div>
|
<div id="description" class="hide">Expo prototype slippy map<br >Please mouseover<br >the pin markers.<br ></div>
|
||||||
<div id="map"></div>
|
<div id="map"></div>
|
||||||
<div class="hide"><p><p>If you see this text, you opened the map HTML-File without the necessary files.</p></div>
|
<div class="hide"><p><p>If you see this text, you opened the map HTML-File without the necessary files.</p></div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user