views:

180

answers:

3

Hello,
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

A: 

As far as i know you can use javascript with , use adobe shockwave, adobe flash or a java applet.

Grue
+1  A: 

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,

Martin Beckett
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
ok this address http://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
+3  A: 

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.

bobince
Add 3D pdf from adobe and u3d - but nothing has really caught on.
Martin Beckett