data = resp.body.split(/, /) # lat,long,town,state,zip
lat = data[0]
lon = data[1]
- redirect_to "/index.html?lat=#{lat}&lon=#{lon}&zoom=14"
+ redirect_to "/index.html?mlat=#{lat}&mlon=#{lon}&zoom=14"
return
end
elsif postcode.match(/^([A-Z]{1,2}\d+[A-Z]?\s*\d[A-Z]{2})/)
data = dataline.split(/,/) # easting,northing,postcode,lat,long
lat = data[3]
lon = data[4]
- redirect_to "/index.html?lat=#{lat}&lon=#{lon}&zoom=14"
+ redirect_to "/index.html?mlat=#{lat}&mlon=#{lon}&zoom=14"
return
end
elsif postcode.match(/^[A-Z]\d[A-Z]\s*\d[A-Z]\d/)
data_lon = resp.body.slice(/longt>.*?</)
lat = data_lat.split(/[<>]/)[1]
lon = data_lon.split(/[<>]/)[1]
- redirect_to "/index.html?lat=#{lat}&lon=#{lon}&zoom=14"
+ redirect_to "/index.html?mlat=#{lat}&mlon=#{lon}&zoom=14"
return
end
elsif postcode.match(/(GIR 0AA|[A-PR-UWYZ]([0-9]{1,2}|([A-HK-Y][0-9]|[A-HK-Y][0-9]([0-9]|[ABEHMNPRV-Y]))|[0-9][A-HJKS-UW]) [0-9][ABD-HJLNP-UW-Z]{2})
resp = http.get("/geocode?postcode=#{postcode}")
lat = resp.body.scan(/[4-6][0-9]\.?[0-9]+/)
lon = resp.body.scan(/[-+][0-9]\.?[0-9]+/)
- redirect_to "/index.html?lat=#{lat}&lon=#{lon}&zoom=14"
+ redirect_to "/index.html?mlat=#{lat}&mlon=#{lon}&zoom=14"
return
end
rescue
redirect_to "/index.html"
#redirect to somewhere else
end
- redirect_to "/index.html?lat=#{lat}&lon=#{lon}&zoom=14"
+ redirect_to "/index.html?mlat=#{lat}&mlon=#{lon}&zoom=14"
#redirect_to "/index.html?error=unknown_postcode_or_zip"
elsif
# Some other postcode / zip code
data_lon = resp.body.slice(/lng>.*?</)
lat = data_lat.split(/[<>]/)[1]
lon = data_lon.split(/[<>]/)[1]
- redirect_to "/index.html?lat=#{lat}&lon=#{lon}&zoom=14"
+ redirect_to "/index.html?mlat=#{lat}&mlon=#{lon}&zoom=14"
end
else
# Some other postcode / zip file
<%= submit_tag 'Search' %>
<%= end_form_tag %>
-<div id="geocoder-attribution">
- Geolocation provided by <a href="http://npemap.org.uk/">npemap.org.uk</a>,
- <a href="http://geocoder.us/">geocoder.us</a>, <a href="http://geocoder.ca/">geocoder.ca</a>
- and <a href="http://www.geonames.org/">geonames.org</a>
-</div>
-<div id="postcode-helper">
-eg: SW15 6JH, 95472 or H2L4C1
-</div>
-<div id="placename-helper">
-eg:Essen
-</div>
+ <div id="geocoder-attribution">
+ Geolocation provided by <a href="http://npemap.org.uk/">npemap.org.uk</a>,
+ <a href="http://geocoder.us/">geocoder.us</a>, <a href="http://geocoder.ca/">geocoder.ca</a>
+ and <a href="http://www.geonames.org/">geonames.org</a>
+ </div>
+ <div id="postcode-helper">
+ eg: SW15 6JH, 95472 or H2L4C1
+ </div>
+ <div id="placename-helper">
+ eg:Essen
+ </div>
</div>
-<% if @user and params['lon'].nil? and params['lat'].nil? %>
+<% if params['mlon'] and params['mlat'] %>
+<% marker = true %>
+<% mlon = params['mlon'] %>
+<% mlat = params['mlat'] %>
+<% lon = params['mlon'] %>
+<% lat = params['mlat'] %>
+<% zoom = params['zoom'] || '12' %>
+<script type="text/javascript">
+ var mlat = <%= lat %>;
+ var mlon = <%= lon %>;
+</script>
+<% elsif @user and params['lon'].nil? and params['lat'].nil? %>
<% lon = @user.home_lon %>
<% lat = @user.home_lat %>
<% zoom = '10' %>
<% zoom = params['zoom'] || '4' %>
<% end %>
+
+
<script type="text/javascript">
- var lon = <%= lon %>;
var lat = <%= lat %>;
+ var lon = <%= lon %>;
var zoom = <%= zoom %>;
var PI = 3.14159265358979323846;
+
+
<% if params['scale'] and params['scale'].length > 0 then %>
zoom = Math.log(360.0/(( <% print params['scale'].to_f() %> ) * 512.0)) / Math.log(2.0);
<% end %>
lon = lon * 20037508.34 / 180;
lat = Math.log(Math.tan( (90 + lat) * PI / 360)) / (PI / 180);
lat = lat * 20037508.34 / 180;
+ <% if marker %>
+ mlon = mlon * 20037508.34 / 180;
+ mlat = Math.log(Math.tan( (90 + mlat) * PI / 360)) / (PI / 180);
+ mlat = mlat * 20037508.34 / 180;
+ <%end%>
</script>
<script type="text/javascript" src="/javascripts/OpenLayers.js"></script>
<script type="text/javascript">
<!--
- var map, layer;
+ var map, layer, markers;
function init(){
layer = new OpenLayers.Layer.LikeGoogle( "Osmarender", "http://dev.openstreetmap.org/~ojw/Tiles/tile.php/", {type:'png'} );
map.addLayer(layer);
- map.addControl(new OpenLayers.Control.LayerSwitcher());
+ //Marker stuff
+
+ <% if marker %>
+ markers = new OpenLayers.Layer.Markers("markers");
+ map.addLayer(markers);
+
+ marker = new OpenLayers.Marker(new OpenLayers.LonLat(mlon,mlat));
+ markers.addMarker(marker);
+ <%end%>
+
+ map.addControl(new OpenLayers.Control.LayerSwitcher());
map.setCenter(new OpenLayers.LonLat(lon, lat), zoom);
map.events.register("moveend", map, function() {