[svg-developers] Re: Best GIS database?

2005-10-30 Thread Andreas Neumann
I haven't used MySQL spatial part, but from what I read in related OS GIS projects it seems like Postgis is much better integrated with other OS GIS projects than MySQL (e.g. UMN Mapserver, Qgis, etc) Postgis is also seems more mature and complete than MySQL. But again - haven't used MySQL

Re: [svg-developers] Best GIS database?

2005-10-30 Thread Omar Abo-Namous
Hi, what exactly is sepcial about GIS-databases?? Could someone hint me to a page with some explanations? thnx Omar tbone58x wrote: I am guessing the open source answer is PostGIS (part of Postgres) but it appears that MySQL is much more popular than Postgres. Does MySQL support GIS

[svg-developers] Re: Manipulating the Dom with SVG#

2005-10-30 Thread mailinatorolli
Hello Jeff, thank you very much for your answer. Now the circle is changing colour but I had to do it in a way a little bit different to the way you discribed it. Here is the way I had to do it: SvgDocument doc = (SvgDocument) svgPictureBox1.Window.Document; XmlElement el =

[svg-developers] Re: How to extend text on a path beyond the line?

2005-10-30 Thread simonshutter
I also just tested this in FF1.5Beta2 and could not display any text on a path at all using: ?xml version=1.0 encoding=utf-8 standalone=no? !DOCTYPE svg PUBLIC -//W3C//DTD SVG 20010904//EN http://www.w3.org/TR/2001/REC-SVG- 20010904/DTD/svg10.dtd svg xmlns=http://www.w3.org/2000/svg;

RE: [svg-developers] Re: How to extend text on a path beyond the line?

2005-10-30 Thread Doug Schepers
Hi, Simon- | I also just tested this in FF1.5Beta2 and could not display | any text on a path at all using: 'textPath' is implemented in MozSVG on the trunk (which is the total code base), but will not be in FF1.5. It was implemented too late, apparently, and hasn't been properly regression

[svg-developers] Re: How to extend text on a path beyond the line?

2005-10-30 Thread simonshutter
Thanks, Doug - do you have any insight into my earier post about text extending beyond the end of the path? Simon --- In svg-developers@yahoogroups.com, Doug Schepers [EMAIL PROTECTED] wrote: Hi, Simon- | I also just tested this in FF1.5Beta2 and could not display | any text on a path

RE: [svg-developers] Re: How to extend text on a path beyond the line?

2005-10-30 Thread Doug Schepers
Hi, Simon- | Thanks, Doug - do you have any insight into my earier post | about text extending beyond the end of the path? Yes, the passage you cite describes only the behavior of an individual glyph, not the text node as a whole, and is only intended for position and orientation. Once both the

[svg-developers] Background color and border

2005-10-30 Thread fuliopen
Hi, I am a new user for svg. In the following svg code, I like to add background color and border. I know that this piece . . . width=200 height=200 . . . defines the area of background. What and where do I add code for background color and border? svg width=200 height=200 version=1.1

[svg-developers] Re: How to extend text on a path beyond the line?

2005-10-30 Thread simonshutter
Ok, thanks - will use separate element --- In svg-developers@yahoogroups.com, Doug Schepers [EMAIL PROTECTED] wrote: Hi, Simon- | Thanks, Doug - do you have any insight into my earier post | about text extending beyond the end of the path? Yes, the passage you cite describes only the

RE: [svg-developers] Rotate and Translate image elements

2005-10-30 Thread senthilnathan kannan
Thanks Doug Schepers, It worked! Nathan Doug Schepers [EMAIL PROTECTED] wrote: Hi, Nathan- | Is it possible to rotate and translate an image | inside the svg. | I know that it does not allow transform attribute to be | defined inside the image element. So is there any alternative | to

[svg-developers] a help needed

2005-10-30 Thread arthycharm
Hai, I am in need of some help.The problem is i have a backend code that fetch the information from the database.the code is written in c++.all the backend information are displayed via SVG in the frontend.I have embedded all the svg syntax at the backend along with the html that will call the

Re: [svg-developers] Re: Manipulating the Dom with SVG#

2005-10-30 Thread Jeff Rafter
The line el.SetAttribute(fill, blue); didn't work in my program. IElement didn't even provide the method set Attribut(). This indicates that you may not have the latest version... You may still need an Invalidate call in there or an Update call-- I don't remember. This is the stuff (along