[svg-developers] how to detect end of manual panning in ASV?

2005-03-02 Thread kanmac1
Is there any reasonable way to detect the end of panning (left mouse button goes up while the cursor is a 'hand')? I ve got some text I have to put into the SVG every time the position of svg changes. But for performance reasons I don't want to call this function while panning, but only once

[svg-developers] Re: Executing Java/C# server method from svg

2005-03-02 Thread Richard Smith
It would be best to make your server application a HTTP server, preferably on port 80, if you want your app to be usable anywhere as that way it will go through proxies, firewalls etc. I think it is much easier in SVG to communicate via HTTP anyway, and a simple HTTP server is very easy to

[svg-developers] Re: Executing Java/C# server method from svg

2005-03-02 Thread Jan
This may be a stupid question as I am not that familiar with HTTP servers, but how do I do this? I was planning on writing a C# application which connects to another already-written C# application which houses a databus and connects to a database. There are specific methods to connect to

RE: [svg-developers] Re: Executing Java/C# server method from svg

2005-03-02 Thread Rick Bullotta
You'll want to write an ASP.NET class that implements IHttpHandler. This is essentially the .NET equivalent of a servlet. Rick Bullotta Lighthammer Software (http://www.lighthammer.com) -Original Message- From: Jan [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 02, 2005 10:01 AM

[svg-developers] Re: Executing Java/C# server method from svg

2005-03-02 Thread Jan
More basic questions. I am a Java/C# developer with not much web experience. I don't know anything about ASP or JSP. 1) I'm assuming that ASP.NET use C# (similar to JSP using Java)? 2) I am using IIS web server and the client's requirement is to stick with this. Do I need an app server

RE: [svg-developers] MID/MIF to SVG conversion

2005-03-02 Thread Randy George
Hi, MID/MIF is a very simple ASCII interchange format used by MapInfo. I believe MapInfo exports svg. Alternatively it would not be much of a project to simply write a translator that would take the mif to svg. Adding mid attributes requires a decision. You can: A. ignore attributes B. add

[svg-developers] Animated fill?

2005-03-02 Thread charmquark69
Hi all, I have a bunch of grouped elements in a SVG doc, based on just two symbols I have defined. I'd like to be able to define the symbols with a simple animated fill. The fill I'm thinking of is the kind of thing seen on old-style barber-poles, where a series of dark-light diagonal

[svg-developers] Sending event to animation via javascript

2005-03-02 Thread dao_te_jing
How does one send an event to the various animation tags via javascript? Ie, I'd like to add additional logic to events in the document, and end / begin animations based on some state. thanks, robert - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit

[svg-developers] Quiz in SVG

2005-03-02 Thread Dale Ellis
Hi all, Just created a Quiz in SVG on the Simpsons which is on my SVG Games site. Im quite happy with it, it works well in SVG I think, any comments/suggestions are very welcome. Links are listed below. Made a little interface so I can add Questions easily so the number of questions

[svg-developers] shp2svg version 0.2

2005-03-02 Thread Andreas Neumann
Hi all, For all those who need to convert ESRI Shapefiles to SVG, i just created an update of the shp2pgsql/ogis2svg.pl script available at: http://www.carto.net/papers/svg/utils/shp2svg/ The changes: * Unicode support in the resulting svg * better rounding options (note that --nrdigits is

Re: [svg-developers] Re: Executing Java/C# server method from svg

2005-03-02 Thread sholla
I'd posted some information on this a while back. What I'm doing is this: Write COM component which you can embed in a parent HTML doc. Embed the SVG doc. in this HTML doc. In you event handler you can refer to the COM component interface methods as: parent.COMCompID.SendEvent(evt) where

Re: [svg-developers] MID/MIF to SVG conversion

2005-03-02 Thread Marjorie Roswell
I have a bunch of MID/MIF files and I would like to convert them to SVG format. Can anyone give me a hint of how to do this ? These three MID/MIF to SVG converters require that you have MapInfo to perform the conversion: http://www.svg-builder.com/specifications.html

[svg-developers] Re: Executing Java/C# server method from svg

2005-03-02 Thread sholla
Jan

RE: [svg-developers] Re: Executing Java/C# server method from svg

2005-03-02 Thread Rick Bullotta
Use getURL. Your HttpHandler will to map to a URL something like: http://yourserver/YourHandler?timestamp=2005-02-01T12:15:00dataset=XXX ASP.Net runs under IIS and exposes your handlers this way. You can return data as text, XML, whatever. I would suggest moving the discussion to the

[svg-developers] How can i improve performance of my SVG application ?

2005-03-02 Thread svg dev
Hello,, i have a svg file loaded into my jsp... how can i improve its performance whilst loading it.? can i set some layers to be off at a particular zoom level and then make them visible at another bigger zoom level ? will this work ?? i use arc view GIS to convert shp to svg and