Map view is a component which is used for integration Google map. It inherits from view.
To init the component you need to perform 2 steps:
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script> <body> dhx.ui ({view:"map", ...}) </body>
In constructor you can specify the following parameters:
Please note, Map view is a derived class, i.e. it inherits all the features of the base class (map view → view).
dhx.ui({ container:"map_container",//container that contains layout cols:[// layout {//to the first column we place Map view view:"map", zoom:6, center:{ x:48.724, y: 8.215}, mapType:"ROADMAP" }, { ... //the second column of the layout. }] })
To use ui functionality, touchui.css and touchui.js files must be included.