-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
153 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<h1>{{{count}}} results found</h1> | ||
|
||
{{node: | ||
<p>Node <strong>{{{id}}}</strong>,{{coords: lat: {{{lat}}}, lon: {{{lon}}},}}<br/> | ||
{{tags:{{{key}}} = {{{value}}}<br/> | ||
}} | ||
<a href="http://www.openstreetmap.org/browse/node/{{{id}}}">Browse on openstreetmap.org</a></p> | ||
}} | ||
{{way: | ||
<p>Way <strong>{{{id}}}</strong>,{{bbox:{{none: no geographic reference}} bounding box south: {{{south}}}, west: {{{west}}}, north: {{{north}}}, east: {{{east}}},}}<br/> | ||
{{tags:{{{key}}} = {{{value}}}<br/> | ||
}}{{members:{{first: members: {{{ref}}}}}, {{{ref}}}}}<br/> | ||
<a href="http://www.openstreetmap.org/browse/way/{{{id}}}">Browse on openstreetmap.org</a></p> | ||
}} | ||
{{relation: | ||
<p>Relation <strong>{{{id}}}</strong>,{{bbox:{{none: no geographic reference}} bounding box south: {{{south}}}, west: {{{west}}}, north: {{{north}}}, east: {{{east}}},}}<br/> | ||
{{tags:{{{key}}} = {{{value}}}<br/> | ||
}}{{members:{{first: members: {{{type}}} <strong>{{{ref}}}</strong> "{{{role}}}"}}, {{{type}}} <strong>{{{ref}}}</strong> "{{{role}}}"}}<br/> | ||
<a href="http://www.openstreetmap.org/browse/relation/{{{id}}}">Browse on openstreetmap.org</a></p> | ||
}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
<script src="http://openlayers.org/api/OpenLayers.js"></script> | ||
<script src="http://openstreetmap.org/openlayers/OpenStreetMap.js"></script> | ||
<script type="text/javascript"> | ||
function make_remove_closure(id) { | ||
var elem = document.getElementById(id); | ||
return function(evt) { | ||
elem.parentElement.removeChild(elem); | ||
}; | ||
} | ||
function display_map(div_id, query_url, lat, lon, zoom) { | ||
map = new OpenLayers.Map(div_id, { | ||
controls:[ | ||
new OpenLayers.Control.Navigation(), | ||
new OpenLayers.Control.PanZoomBar(), | ||
new OpenLayers.Control.LayerSwitcher(), | ||
new OpenLayers.Control.Attribution()], | ||
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") | ||
} ); | ||
layerMapnik = new OpenLayers.Layer.OSM.Mapnik("Mapnik"); | ||
map.addLayer(layerMapnik); | ||
var lonLat = new OpenLayers.LonLat(lon, lat).transform(new OpenLayers.Projection("EPSG:4326"), new OpenLayers.Projection("EPSG:900913")); | ||
map.setCenter (lonLat, zoom); | ||
//Initialise the vector layer using OpenLayers.Format.OSM | ||
var styleMap = new OpenLayers.StyleMap({ | ||
strokeColor: "blue", | ||
strokeWidth: 10, | ||
pointRadius: 20, | ||
fillColor: "blue" | ||
}); | ||
var layer = new OpenLayers.Layer.Vector("Polygon", { | ||
strategies: [new OpenLayers.Strategy.Fixed()], | ||
protocol: new OpenLayers.Protocol.HTTP({ | ||
url: query_url, | ||
format: new OpenLayers.Format.OSM() | ||
}), | ||
styleMap: styleMap, | ||
projection: new OpenLayers.Projection("EPSG:4326") | ||
}); | ||
layer.events.register("featuresadded", layer, | ||
make_remove_closure(div_id + "_progressbar")); | ||
map.addLayers([layer]); | ||
return map; | ||
} | ||
var maps = new Array(); | ||
function init(){ | ||
var map_hooks = document.forms; | ||
for (var i in map_hooks) | ||
{ | ||
if (map_hooks[i].getAttribute("class") == "map_descriptor") | ||
maps.push(display_map | ||
(map_hooks[i].getAttribute("action"), | ||
map_hooks[i].url.value, | ||
map_hooks[i].lat.value, map_hooks[i].lon.value, | ||
map_hooks[i].zoom.value)); | ||
} | ||
} | ||
</script> | ||
<h1>{{{count}}} results found</h1> | ||
|
||
{{node: | ||
<div style="min-height:300px;"> | ||
{{coords:<div id="map_node_{{{id}}}" style="width:300px;height:300px;float:right;"> | ||
<div id="map_node_{{{id}}}_progressbar">Loading data ...</div> | ||
<form class="map_descriptor" action="map_node_{{{id}}}"> | ||
<input type="hidden" name="url" value="interpreter?data=node%28{{{id}}}%29%3Bout+skel%3B"/> | ||
<input type="hidden" name="lat" value="{{{lat}}}"/> | ||
<input type="hidden" name="lon" value="{{{lon}}}"/> | ||
<input type="hidden" name="zoom" value="17"/> | ||
</form> | ||
</div>}} | ||
|
||
<p>Node <strong>{{{id}}}</strong>,{{coords: lat: {{{lat}}}, lon: {{{lon}}},}}<br/> | ||
{{tags:{{{key}}} = {{{value}}}<br/> | ||
}} | ||
<a href="http://www.openstreetmap.org/browse/node/{{{id}}}">Browse on openstreetmap.org</a></p> | ||
</div> | ||
}} | ||
{{way: | ||
<div style="min-height:300px;"> | ||
{{bbox:<div id="map_way_{{{id}}}" style="width:300px;height:300px;float:right;"> | ||
<div id="map_way_{{{id}}}_progressbar">Loading data ...</div> | ||
<form class="map_descriptor" action="map_way_{{{id}}}"> | ||
<input type="hidden" name="url" value="interpreter?data=%28way%28{{{id}}}%29%3Bnode%28w%29%29%3Bout+skel%3B"/> | ||
<input type="hidden" name="lat" value="{{{lat}}}"/> | ||
<input type="hidden" name="lon" value="{{{lon}}}"/> | ||
<input type="hidden" name="zoom" value="{{{zoom}}}"/> | ||
</form> | ||
</div>{{none:}}}} | ||
|
||
<p>Way <strong>{{{id}}}</strong>,{{bbox:{{none: no geographic reference}} bounding box south: {{{south}}}, west: {{{west}}}, north: {{{north}}}, east: {{{east}}},}}<br/> | ||
{{tags:{{{key}}} = {{{value}}}<br/> | ||
}}{{members:{{first: members: {{{ref}}}}}, {{{ref}}}}}<br/> | ||
<a href="http://www.openstreetmap.org/browse/way/{{{id}}}">Browse on openstreetmap.org</a></p> | ||
</div> | ||
}} | ||
{{relation: | ||
<div style="min-height:300px;"> | ||
{{bbox:<div id="map_relation_{{{id}}}" style="width:300px;height:300px;float:right;"> | ||
<div id="map_relation_{{{id}}}_progressbar">Loading data ...</div> | ||
<form class="map_descriptor" action="map_relation_{{{id}}}"> | ||
<input type="hidden" name="url" value="interpreter?data=%28relation%28{{{id}}}%29%3Bnode%28r%29%2D%3E%2Ex%3Bway%28r%29%3Bnode%28w%29%3B%29%3Bout+skel%3B"/> | ||
<input type="hidden" name="lat" value="{{{lat}}}"/> | ||
<input type="hidden" name="lon" value="{{{lon}}}"/> | ||
<input type="hidden" name="zoom" value="{{{zoom}}}"/> | ||
</form> | ||
</div>{{none:}}}} | ||
|
||
<p>Relation <strong>{{{id}}}</strong>,{{bbox:{{none: no geographic reference}} bounding box south: {{{south}}}, west: {{{west}}}, north: {{{north}}}, east: {{{east}}},}}<br/> | ||
{{tags:{{{key}}} = {{{value}}}<br/> | ||
}}{{members:{{first: members: {{{type}}} <strong>{{{ref}}}</strong> "{{{role}}}"}}, {{{type}}} <strong>{{{ref}}}</strong> "{{{role}}}"}}<br/> | ||
<a href="http://www.openstreetmap.org/browse/relation/{{{id}}}">Browse on openstreetmap.org</a></p> | ||
</div> | ||
}} |