Tell me more ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

We are going to create 3D maps in ArcGIS Desktop with the help of 3d analyst extension and then I want to integrate those maps with ArcGIS Java Script API 3.2/3.3 (after publishing maps on server 10.1)

I researched on Google and ESRI help regarding display 3d map in java script application but not get confirm information although we do not have ArcGIS extension for Bing maps.

So it is possible to display 3d maps in JSAPI 3.2/3.3??

thanks in advance : )

Software platform: ArcGIS Desktop and Server 10.1

Links that I have referred :

ESRI forum

ArcGIS Extension for Bing Maps

share|improve this question
1  
As far as I Know, it is not possible. – Devdatta Tengshe Feb 13 at 4:47
@DevdattaTengshe thanks for your reply. – Sunil Feb 13 at 5:06

2 Answers

up vote 2 down vote accepted

Well it's not the ArcGIS JavaScript API, but there is ESRI's CityEngine Web Viewer, which uses WebGL.

share|improve this answer
thanks for your reply. I will check and let you know (Not sure that its works with ArcGIS Server . I will research and let you know) thanks : ) – Sunil Feb 13 at 6:35

By "3d map", you mean a satellite view as in google maps? If so, creating a layer and adding it to your map would solve. URL for satellite view would be,

http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer

Code would look something like this

var tiledMapServiceLayer = new esri.layers.ArcGISTiledMapServiceLayer("http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer");
map.addLayer(tiledMapServiceLayer);

Hope this helps.

share|improve this answer
@Prasana thanks for your reply . My idea/definition of 3D maps its litile bit different..Currently I am referring cesium.agi.com this for reference.. – Sunil Feb 13 at 5:06
@Sunil have you succeeded in 3D development? I am also having 3D View requirement. – Gunner Jun 5 at 12:12
@Gunner We are created sample 3-D maps according to requirement but unable to publish on web due to limitations (not possible in JSAPI 3.2/3.3 and we do not have the City engine license) – Sunil Jun 5 at 15:40

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.