CanvasMap
Getting Started Tutorials 3D Reference

Special Items

Creating maps in 3D offers some special challenges and opprotunties. The 3D Specials layer provides a "floor" for your scenes and other items that might prove useful.

Note that the contents of the special layer will change as new features are added to CanvasMap 3D.

Special Items

Add the following code to your OnLoad() function to add a layer with special 3D items and will add a floor to your scene which can help you find where you are while creating your scenes.

var TheLayerObjects=new CM3LayerSpecial();
TheLayerObjects.SetSetting("Item","Name","3D Specials");
TheMainContainer.AddLayer(TheLayerObjects);

var Width=1000;
var TheFloor=TheLayerObjects.AddFloor(Width,Width,0,0,0,0.2); // added to scene so Y and Z are switched	

There are some other items in this menu but they are underdevelopment so they may not work as expected.