I am looking for solutions for 3D visualizations in web browsers.
For now I just need to do research about this topic, i.e. I need to know how many solutions exist and which of these are good and why?
Thanks

link|improve this question

75% accept rate
1  
WebGL: delicious.com/popular/webgl – Tristan Apr 8 '10 at 22:44
feedback

2 Answers

up vote 5 down vote accepted

Brief overview of 3D on the web:

VRML. An HTML-style markup language for 3D models that was supposed to be the amazing cyberspace future of the web, back when we still thought what the web needed to be popular was just to totally change everything about it. We were idiots. VRML is all but dead.

Java. JVMs from 1.3 can run the Java3D engine in applets. With the decline in prevalence of desktop Java I have yet to see this in the wild.

Flash. 3D-primitive support in Flash 10; libraries that hack it in earlier Flash versions, and provide higher-level engine features. (Papervision, Sandy et al.) This is how the majority of in-browser 3D is done today.

CSS. WebKit provides a perspective transform feature to CSS, which has been proposed for standardisation. Won't offer anything like full 3D engine features of course, but the capability to integrate with HTML content in the page is interesting.

O3D. Google's experimental 3D engine browser plugin.

WebGL. Proposed binding of standard OpenGL to JavaScript and HTML5 canvas. Of interest in that you can use it in plain JavaScript with no plugins, but it's pretty low-level. Currently only available in in-development browser snapshots.

Others. There are gaming 3D engines that have been packaged into a plugin, eg. Unity, and a few sundry proprietary-format model viewer plugins.

link|improve this answer
Add 3D pdf from adobe and u3d - but nothing has really caught on. – Martin Beckett Apr 8 '10 at 23:48
feedback

Open standard webgl,
if you are prepared to download a plugin - lots and lots

Nothing immediately leaps out for maps, a good place to start is opensourcegis,

link|improve this answer
I forgot to notice one more info. This what i am looking for is related to GIS ie. i will have one map and my job will be to implement some operation with it. Maybe this will be just change i camera position, virtual walk throught this map or something like this. is this possible? – Milos Apr 8 '10 at 23:17
ok this address opensourcegis.org have a more than two hundred link. Can you save up my time and give me a couple of link where I should start my research – Milos Apr 11 '10 at 23:12
feedback

Your Answer

 
or
required, but never shown

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