Hi all first i&#39;d like to say sorry for my unsubscribe but something was wrong with my mail account :-D now everything is ok.<br>I developed a little plugin based on <a href="http://www.cartoweb.org/cwiki/HowToWriteaRecenterPlugin">http://www.cartoweb.org/cwiki/HowToWriteaRecenterPlugin</a>.<br>
Everything is ok, it does recentering on selected point (with decimal coordinates) and zooming; the problem is with the crossahir parameter I&#39;m not able to show nothing on my map.<br>My filterPostRequest function is above:<br>
&nbsp;&nbsp;&nbsp; public function filterPostRequest(FilterRequestModifier $request) {<br>&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $searchString = $request-&gt;getValue(&#39;LatLng&#39;);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (!empty($searchString)) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $pieces = explode(&quot;, &quot;, $searchString);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $request-&gt;setValue(&#39;recenter_x&#39;, $pieces[1]);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $request-&gt;setValue(&#39;recenter_y&#39;, $pieces[0]);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $request-&gt;setValue(&#39;recenter_scale&#39;, &#39;50000&#39;);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $request-&gt;setValue(&#39;recenter_doit&#39;, &#39;1&#39;);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $request-&gt;setValue(&#39;show_crosshair&#39;, &#39;1&#39;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>}<br><br>In my client.ini i have enabled this plugin: exportPdf,exportCsv<br>and in server_conf this: outline, mapOverlay,exportPdf.<br>
<br>I followed another discussion on this list but nothing seem to change.<br>any idea?<br>Thanks a lot<br>Emmanuele<br>