Hi Oliver and thanks for your reply.<br>I just createmy location.ini under my project and&nbsp; fill it wiht this property:<br><br>crosshairSymbol = 1<br>crosshairSymbolColor = 0,192,0<br><br>On server side in Server_conf/myProject/symbols.txt i set this symbols:<br>
SYMBOL<br>&nbsp;&nbsp;&nbsp; NAME &quot;cerchio&quot; <br>&nbsp;&nbsp;&nbsp; TYPE ellipse <br>&nbsp;&nbsp;&nbsp; FILLED true <br>&nbsp;&nbsp;&nbsp; POINTS 1 1 END <br>END<br><br>SYMBOL<br>&nbsp;&nbsp;&nbsp; NAME &#39;linea&#39;<br>&nbsp;&nbsp;&nbsp; TYPE ellipse<br>&nbsp;&nbsp;&nbsp; POINTS 1 1 END<br>&nbsp;&nbsp;&nbsp; FILLED true<br>END<br>
<br>SYMBOL<br>&nbsp;&nbsp;&nbsp; NAME &quot;triangolo&quot;<br>&nbsp;&nbsp;&nbsp; TYPE VECTOR<br>&nbsp;&nbsp;&nbsp; FILLED TRUE<br>&nbsp;&nbsp;&nbsp; POINTS 0 1 .5 0 1 1 0 1 END<br>END<br><br>SYMBOL<br>&nbsp; NAME &quot;quadrato&quot;<br>&nbsp; TYPE VECTOR<br>&nbsp; FILLED TRUE<br>&nbsp; POINTS<br>&nbsp;&nbsp;&nbsp; 0 0<br>
&nbsp;&nbsp;&nbsp; 0 0.5<br>&nbsp;&nbsp;&nbsp; 0.5 0.5<br>&nbsp;&nbsp;&nbsp; 0.5 0<br>&nbsp;&nbsp;&nbsp; 0 0<br>&nbsp; END<br>END<br><br>but still don&#39;t work. What&#39;s wrong :-S<br>Thanks a lot.<br>Emmanuele<br><br><br><div class="gmail_quote">2008/7/8 Oliver Christen &lt;<a href="mailto:oliver.christen@camptocamp.com">oliver.christen@camptocamp.com</a>&gt;:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">





<div bgcolor="#ffffff">
<div><font size="2">Hi</font></div>
<div><font size="2"></font>&nbsp;</div>
<div><font size="2">did you defined a symbol&nbsp;to use in your location.ini 
(client side)?</font></div>
<div><font size="2"></font>&nbsp;</div>
<div><font size="2">crosshairSymbol = 
the_symbol_id_as_defined_in_your_symbol_file_on_server_side</font></div>
<div><font size="2"></font>&nbsp;</div>
<div><font size="2"><a href="http://www.cartoweb.org/doc_head/docbook/xhtml/user.location.html" target="_blank">http://www.cartoweb.org/doc_head/docbook/xhtml/user.location.html</a></font></div>
<div><font size="2"></font>&nbsp;</div>
<div><font size="2">regards</font></div>
<div><font size="2">Oliver</font></div>
<blockquote style="border-left: 2px solid rgb(0, 0, 0); padding-right: 0px; padding-left: 5px; margin-left: 5px; margin-right: 0px;"><div><div></div><div class="Wj3C7c">
  <div style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;">----- Original Message ----- </div>
  <div style="background: rgb(228, 228, 228) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;">
<b>From:</b> 
  <a title="mannobug@gmail.com" href="mailto:mannobug@gmail.com" target="_blank">mannobug 
  mannobug</a> </div>
  <div style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"><b>To:</b> <a title="cartoweb-users@lists.maptools.org" href="mailto:cartoweb-users@lists.maptools.org" target="_blank">cartoweb-users@lists.maptools.org</a> 
  </div>
  <div style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"><b>Sent:</b> Tuesday, July 08, 2008 11:34 
  AM</div>
  <div style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"><b>Subject:</b> [Cartoweb-users] Recenter Plugin 
  problem</div>
  <div><br></div>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" target="_blank">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>
  </div></div><p>
  </p><hr>

  <p></p>_______________________________________________<br>Cartoweb-users 
  mailing 
  list<br><a href="mailto:Cartoweb-users@lists.maptools.org" target="_blank">Cartoweb-users@lists.maptools.org</a><br><a href="http://lists.maptools.org/mailman/listinfo/cartoweb-users" target="_blank">http://lists.maptools.org/mailman/listinfo/cartoweb-users</a><br>
</blockquote></div>
</blockquote></div><br>