Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have seen several threads that adress this question but nothing that really solves my problem. I have a SVG file with a map and differrent regions ( http://www.mediafire.com/?5pmyevdwbyrb51f ). I want do do something like this: http://raphaeljs.com/australia.html.

But the question is how I can convert the file so that is works in the script? How do I get those coordinates? I have tried several converters and such but I must suck at this 'cause I cant get it to work. Maybe someone can help out?

share|improve this question
possible duplicate of SVG files in Raphael, can they be used? – Peter O. Dec 7 '12 at 16:14

5 Answers

If you mean using Raphael to import an SVG file so you can display it or manipulate it, it's not currently supported. But you might want to check extensions raphael-svg-import or raphael-svg-import-classic.

See also SVG files in Raphael, can they be used?

share|improve this answer
Thanks for the answer. Already tried them though and cant get any one them to work. If someone feels they wanna give it a try, I have the link to my file in my first post. Dont know what Im doing wrong. Tried with different "settings" in InkScape aswell but this isnt my cup of tea... – larschanders Oct 28 '11 at 10:19

Have you tried pre-processing the SVG file with Rappar?

You can also load the SVG file and parse it at runtime with Vectron which is a jQuery plugin wrapper around Rappar.

share|improve this answer

Look at the code of:

http://raphaeljs.com/tiger.html

<script src="tiger.js">
// Load the file with the tiger mapping to a variable
     var tiger = [0,0,600,600,{type:"path",path:"M-122.304 84.285C-12...
</script>

<script>
 // run it
 window.onload = function () {
    var r = Raphael(tiger).translate(200, 200);
 };
</script>
share|improve this answer
I dont see how that helps me. That example doesnt use a SVG file? Explain it to me if Im being stupid now. The problem is to get those coordinates (like the ones in tiger.js) from my file. – larschanders Oct 28 '11 at 8:23

Why don't you look my example here: http://dariomac.com/Cms_Data/Contents/dariomac_db/Media/Resources/raphael-utils/map02.html

If that is what you need you can see how I have done it here: http://www.dariomac.com/Document/Raphael-Utils

If you want to know the whole history behind this import implementation, see it here: http://storify.com/dariomac/svg-to-raphael

share|improve this answer

You can also dump your SVG in here... SVG to Javascript converter

It will add removable lines for your mouse over/out. If you want them leave them in.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.