<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
<font face="Helvetica, Arial, sans-serif">The panning and double click
delays in ie seem to have been taken care of with release 0.2.0.&nbsp; Some
problems still exist in firefox (I haven't tested safari yet).&nbsp;&nbsp;&nbsp; The
panning waits until the mouse is released to move.&nbsp; The sliding of the
map when double clicked is not smooth, jumps about&nbsp; second or so until
centered as required.<br>
<br>
ka-map 0.1.1&nbsp; and &gt; still have a problem in&nbsp; ie and safari when a
non-standard port is used which is releated to how the browsers return
SERVER_HOST variable.&nbsp; In firefox the port is never part of the
SERVER_HOST environment variable.&nbsp; In IE and Safari the port is in both
the SERVER_HOST and SERVER_PORT variables.&nbsp; Fix would be in init.php
starting at line 115.<br>
<br>
&lt;&nbsp;&nbsp;&nbsp;&nbsp; if (isset($_SERVER['SERVER_PORT']) &amp;&amp;
$_SERVER['SERVER_PORT'] != '80')<br>
&lt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $szURL .= ":".$_SERVER['SERVER_PORT'];<br>
---<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp; if (!strpos($szURL,':')) {&nbsp; // check to make sure port is not
already in SERVER_HOST variable<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (isset($_SERVER['SERVER_PORT']) &amp;&amp;
$_SERVER['SERVER_PORT'] != '80')<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $szURL .= ":".$_SERVER['SERVER_PORT'];<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp; }<br>
<br>
Ed<br>
<br>
<br>
<br>
</font>
</body>
</html>