Steve --<br><br>Did you see this example?<br><br><a href="http://kappa.gonfi.org/ka-map-query/htdocs/index_query.html">http://kappa.gonfi.org/ka-map-query/htdocs/index_query.html</a><br><br>Not quite the same as it creates a tiled layer with the query results that you can zoom/pan just like everything else, but IMHO a better way for showing query results as it's a bit more 'sticky'.
<br><br>The valuable application for the approach that you're talking about would be to zoom to an area and then use a single, size-of-the-viewport map for time sensitive data.&nbsp; Think: zoom to an area and then have a weather radar that auto-refreshed every so many seconds.
<br><br>db<br><br><div><span class="gmail_quote">On 6/23/06, <b class="gmail_sendername">Steve Lime</b> &lt;<a href="mailto:Steve.Lime@dnr.state.mn.us">Steve.Lime@dnr.state.mn.us</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Sure, I'll have a go. One question that is sort of related. It is possible to overlay<br>an map generated at the same scale/cellsize as the viewport contents, but arbitrary<br>size? You'd know the extent so presumably you'd know where to place the overlay.
<br><br>The reason I ask is that it might be a slick way to hilite a feature. For example, you<br>could have MapServer or whatever generate a small map with the feature hilited and<br>then use it as an acetate.<br><br>Steve
<br><br>&gt;&gt;&gt; Paul Spencer &lt;<a href="mailto:pspencer@dmsolutions.ca">pspencer@dmsolutions.ca</a>&gt; 6/23/2006 7:59:55 AM &gt;&gt;&gt;<br>Steve,<br><br>this seems like it would be good to put in the wiki at <a href="http://ka-">
http://ka-</a><br><a href="http://map.ominiverdi.org/wiki/index.php/Query">map.ominiverdi.org/wiki/index.php/Query</a><br><br>I copied/pasted your response there but it is lacking some details.<br>Could you edit the page and include details on hooking up the ka-Map
<br>side of things as well.<br><br>This would be portable to the OpenLayers stuff too so I think its<br>worth the effort to document how to do it<br><br>Cheers<br><br>Paul<br><br>On 22-Jun-06, at 1:22 PM, Steve Lime wrote:
<br><br>&gt; Have you installed the stock mapserver demo? It shows you how to do<br>&gt; a simple query pretty easily. Here's another example from a site here:<br>&gt;<br>&gt;&nbsp;&nbsp; <a href="http://maps/cgi-bin/mapserv46?map=/usr/local/www/docs_maps/">
http://maps/cgi-bin/mapserv46?map=/usr/local/www/docs_maps/</a><br>&gt; mapserver_demos/tests46/query/test.map&amp;program=/cgi-bin/<br>&gt; mapserv46&amp;htmlroot=/mapserver_demos/tests46&amp;map_web_imagepath=/usr/<br>&gt; local/www/docs_maps/tmp/&amp;map_web_imageurl=/tmp/
<br>&gt;<br>&gt; The mapfile and template file are available.<br>&gt;<br>&gt; The idea is pretty straight forward, there are 2 steps:<br>&gt;<br>&gt; 1) author a template file<br>&gt;<br>&gt; Although typically HTML files you can return XML or whatever. For
<br>&gt; example,<br>&gt; if you have a DBF file with 3 attributes ITEM1, ITEM2 and ITEM3<br>&gt; then a template<br>&gt; might look like:<br>&gt;<br>&gt; &lt;html&gt;<br>&gt;&nbsp;&nbsp; &lt;head&gt;&lt;title&gt;Sample Template&lt;/title&gt;&lt;/head&gt;
<br>&gt;&nbsp;&nbsp; &lt;body&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;li&gt; item 1 is [ITEM1]<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;li&gt; and item 2 is [ITEM2]<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;li&gt; but item 3 is [ITEM3]<br>&gt;&nbsp;&nbsp; &lt;/body&gt;<br>&gt; &lt;/html&gt;<br>&gt;<br>&gt; 2) reference the template in the LAYER
<br>&gt;<br>&gt; Typically that means adding the line:<br>&gt;<br>&gt;&nbsp;&nbsp; TEMPLATE 'mytemplate.html'<br>&gt;<br>&gt; to the mapfile.<br>&gt;<br>&gt; In my ka-map example all I am doing is using ka-map properties to<br>&gt; make standard query calls to MapServer...
<br>&gt;<br>&gt; Steve<br>&gt;<br>&gt;&gt;&gt;&gt; &quot;Mike D'Ambrogia&quot; &lt;<a href="mailto:miked@jamagination.com">miked@jamagination.com</a>&gt; 6/21/2006 7:20:27 PM &gt;&gt;&gt;<br>&gt; Steve,<br>&gt;<br>&gt; I'm fully lost in the query side of things (after being fully lost
<br>&gt; virtually everywhere else...) is there a snippet of the mapfile<br>&gt; that you<br>&gt; could send back that would show how you setup the mapfile to pass the<br>&gt; query event.&nbsp;&nbsp;The code below makes total sense, I just can't
<br>&gt; connect the<br>&gt; dots between clicking the &quot;i&quot; icon in ka-map and firing the jscript<br>&gt; snippet below, my thought is that it's a mapfile setup thing that I'm<br>&gt; not understanding<br>&gt;<br>
&gt; Any help appreciated<br>&gt;<br>&gt; Mike<br>&gt;<br>&gt; -----Original Message-----<br>&gt; From: <a href="mailto:ka-map-users-bounces@lists.maptools.org">ka-map-users-bounces@lists.maptools.org</a><br>&gt; [mailto:
<a href="mailto:ka-map-users-bounces@lists.maptools.org">ka-map-users-bounces@lists.maptools.org</a>] On Behalf Of Steve<br>&gt; Lime<br>&gt; Sent: Wednesday, June 21, 2006 12:16 PM<br>&gt; To: <a href="mailto:pspencer@dmsolutions.ca">
pspencer@dmsolutions.ca</a>; <a href="mailto:absarz@hotmail.com">absarz@hotmail.com</a><br>&gt; Cc: <a href="mailto:ka-map-users@lists.maptools.org">ka-map-users@lists.maptools.org</a><br>&gt; Subject: Re: [ka-Map-users] Map Query
<br>&gt;<br>&gt;<br>&gt; I have a simple query capability working in this example:<br>&gt;<br>&gt;&nbsp;&nbsp; <a href="http://maps.dnr.state.mn.us/ka-map/compass.html">http://maps.dnr.state.mn.us/ka-map/compass.html</a><br>&gt;<br>
&gt; It's pretty straight-forward. I just take the output from the query<br>&gt; event and pass that along to your mapping application. In my case I'm<br>&gt; handing the query off to a standard MapServer CGI application in a new
<br>&gt; window. The relevant code looks like:<br>&gt;<br>&gt; function myQuery( eventID, queryType, coords ) {<br>&gt;<br>&gt; window.open(&quot;/cgi-bin/mapserv410?<br>&gt; maps=COMPASS_MAPFILE&amp;mode=query&amp;mapxy=&quot;
<br>&gt; + coords[0] + &quot;+&quot; + coords[1]); }<br>&gt;<br>&gt; Steve<br>&gt;<br>&gt;&gt;&gt;&gt; Paul Spencer &lt;<a href="mailto:pspencer@dmsolutions.ca">pspencer@dmsolutions.ca</a>&gt; 6/20/2006 12:45:36 PM &gt;&gt;&gt;
<br>&gt; sorry, I don't have anything like that.&nbsp;&nbsp;Perhaps someone on the<br>&gt; mailing list does ...<br>&gt;<br>&gt; On 20-Jun-06, at 1:09 AM, Absar Ali wrote:<br>&gt;<br>&gt;&gt;<br>&gt;&gt; Dear Paul Spencer,<br>&gt;&gt;
<br>&gt;&gt; Thnkx for ur prompt response, if you have the code for query then<br>&gt;&gt; please email me, i will be very thnk ful to u.<br>&gt;&gt;<br>&gt;&gt; Regards,<br>&gt;&gt;<br>&gt;&gt; Absar<br>&gt;&gt;<br>&gt;&gt;&gt; From: Paul Spencer &lt;
<a href="mailto:pspencer@dmsolutions.ca">pspencer@dmsolutions.ca</a>&gt;<br>&gt;&gt;&gt; To: absar ali &lt;<a href="mailto:absarzaidi@yahoo.com">absarzaidi@yahoo.com</a>&gt;<br>&gt;&gt;&gt; CC: <a href="mailto:ka-map-users@lists.maptools.org">
ka-map-users@lists.maptools.org</a><br>&gt;&gt;&gt; Subject: Re: [ka-Map-users] Map Query Date: Mon, 19 Jun 2006<br>&gt;&gt;&gt; 17:09:48 -0400<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; Absar,<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; the info tool is an example of how you can integrate a query
<br>&gt;&gt;&gt; capability into your application.&nbsp;&nbsp;It ensures that you have the<br>&gt;&gt;&gt; coordinates requested by the user.&nbsp;&nbsp;You need to implement the<br>&gt;&gt;&gt; capability to search your data.<br>&gt;&gt;&gt;
<br>&gt;&gt;&gt; Cheers<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; Paul<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; On 19-Jun-06, at 1:36 AM, absar ali wrote:<br>&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; I have sucessfully installed ka map n its worknig but when i
<br>&gt;&gt;&gt;&gt; select&nbsp;&nbsp;the info tool and click on the polygon a java script<br>&gt;&gt;&gt;&gt; message window&nbsp;&nbsp;appear with some extent values and x y values of<br>&gt;&gt;&gt;&gt; the map,<br>&gt;&gt;&gt;&gt; what i want is when i click on the polygon a new window will
<br>&gt;&gt;&gt;&gt; appear&nbsp;&nbsp;with values from the dbf files.<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; Waiting for a v good n working response.<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; Regards,<br>&gt;&gt;&gt;&gt;
<br>&gt;&gt;&gt;&gt; Absar Ali<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; Yahoo! Messenger with Voice. PC-to-Phone calls for ridiculously<br>&gt;&gt;&gt;&gt; low&nbsp;&nbsp;rates.<br>&gt;&gt;&gt;&gt; _______________________________________________
<br>&gt;&gt;&gt;&gt; ka-Map-users mailing list<br>&gt;&gt;&gt;&gt; <a href="mailto:ka-Map-users@lists.maptools.org">ka-Map-users@lists.maptools.org</a><br>&gt;&gt;&gt;&gt; <a href="http://lists.maptools.org/mailman/listinfo/ka-map-users">
http://lists.maptools.org/mailman/listinfo/ka-map-users</a><br>&gt;&gt;&gt;<br>&gt;&gt;&gt; +-----------------------------------------------------------------+<br>&gt;&gt;&gt; |Paul Spencer&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="mailto:pspencer@dmsolutions.ca">
pspencer@dmsolutions.ca</a>&nbsp;&nbsp; |<br>&gt;&gt;&gt; +-----------------------------------------------------------------+<br>&gt;&gt;&gt; |Applications &amp; Software Development&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<br>&gt;&gt;&gt; |DM Solutions Group Inc&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
<a href="http://www.dmsolutions.ca/|">http://www.dmsolutions.ca/|</a><br>&gt;&gt;&gt; +-----------------------------------------------------------------+<br>&gt;&gt;&gt;<br>&gt;&gt;&gt;<br>&gt;&gt;&gt;<br>&gt;&gt;&gt;<br>
&gt;&gt;&gt; _______________________________________________<br>&gt;&gt;&gt; ka-Map-users mailing list<br>&gt;&gt;&gt; <a href="mailto:ka-Map-users@lists.maptools.org">ka-Map-users@lists.maptools.org</a><br>&gt;&gt;&gt; <a href="http://lists.maptools.org/mailman/listinfo/ka-map-users">
http://lists.maptools.org/mailman/listinfo/ka-map-users</a><br>&gt;&gt;<br>&gt;&gt;<br>&gt;<br>&gt; +-----------------------------------------------------------------+<br>&gt; |Paul Spencer&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="mailto:pspencer@dmsolutions.ca">
pspencer@dmsolutions.ca</a>&nbsp;&nbsp; |<br>&gt; +-----------------------------------------------------------------+<br>&gt; |Applications &amp; Software Development&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<br>&gt; |DM Solutions Group Inc&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
<a href="http://www.dmsolutions.ca/|">http://www.dmsolutions.ca/|</a><br>&gt; +-----------------------------------------------------------------+<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; _______________________________________________
<br>&gt; ka-Map-users mailing list<br>&gt; <a href="mailto:ka-Map-users@lists.maptools.org">ka-Map-users@lists.maptools.org</a><br>&gt; <a href="http://lists.maptools.org/mailman/listinfo/ka-map-users">http://lists.maptools.org/mailman/listinfo/ka-map-users
</a><br>&gt;<br>&gt;<br>&gt; _______________________________________________<br>&gt; ka-Map-users mailing list<br>&gt; <a href="mailto:ka-Map-users@lists.maptools.org">ka-Map-users@lists.maptools.org</a><br>&gt; <a href="http://lists.maptools.org/mailman/listinfo/ka-map-users">
http://lists.maptools.org/mailman/listinfo/ka-map-users</a><br>&gt;<br>&gt;<br>&gt; _______________________________________________<br>&gt; ka-Map-users mailing list<br>&gt; <a href="mailto:ka-Map-users@lists.maptools.org">
ka-Map-users@lists.maptools.org</a><br>&gt; <a href="http://lists.maptools.org/mailman/listinfo/ka-map-users">http://lists.maptools.org/mailman/listinfo/ka-map-users</a><br><br>+-----------------------------------------------------------------+
<br>|Paul Spencer&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="mailto:pspencer@dmsolutions.ca">pspencer@dmsolutions.ca</a>&nbsp;&nbsp; |<br>+-----------------------------------------------------------------+<br>|Applications &amp; Software Development&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|
<br>|DM Solutions Group Inc&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://www.dmsolutions.ca/|">http://www.dmsolutions.ca/|</a><br>+-----------------------------------------------------------------+<br><br><br><br><br>_______________________________________________
<br>ka-Map-users mailing list<br><a href="mailto:ka-Map-users@lists.maptools.org">ka-Map-users@lists.maptools.org</a><br><a href="http://lists.maptools.org/mailman/listinfo/ka-map-users">http://lists.maptools.org/mailman/listinfo/ka-map-users
</a><br><br>_______________________________________________<br>ka-Map-users mailing list<br><a href="mailto:ka-Map-users@lists.maptools.org">ka-Map-users@lists.maptools.org</a><br><a href="http://lists.maptools.org/mailman/listinfo/ka-map-users">
http://lists.maptools.org/mailman/listinfo/ka-map-users</a><br></blockquote></div><br><br clear="all"><br>-- <br>************************************<br>David William Bitner<br><a href="mailto:bitner@gyttja.org">bitner@gyttja.org
</a>