<div id="geocoder">
<%= start_form_tag :controller => 'geocoder', :action => 'search' %>
- <%= text_field 'query', 'postcode'%>
+ <%= text_field 'query', 'postcode' %>
<%= text_field 'query', 'place_name'%>
<%= 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>
+ <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
+ Enter a postcode or zip code, eg: SW15 6JH, 95472
</div>
<div id="placename-helper">
- eg:Essen
+ Enter a place-name, eg:Essen
</div>
</div>
var el = document.getElementById( 'map' );
var left = getStyle( el, 'left' );
var top = getStyle( el, 'top' );
- var bottom = el.old_bottom;
- if( ! bottom ) {
- bottom = getStyle( el, 'bottom' );
- }
- var right = el.old_right;
- if( ! right ) {
- right = getStyle( el, 'right' );
- }
+ var bottom = getStyle( el, 'bottom' );
+ var right = getStyle( el, 'right' );
var width = el.old_width;
if( ! width ) {
width = getStyle( el, 'width' );
}
if( top != 'auto' && bottom != 'auto' && height == 'auto' ) {
el.old_height = height;
- var new_height = (pheight - el.offsetHeight - parseInt( bottom ) );
+ var new_height = (pheight - el.offsetTop - parseInt( bottom ) );
el.style.height = new_height + 'px';
}
+ map.updateSize();
}
if( ie6 ) {