sets the center of the map
webix.ui({
//provide your own Google API key
key:"AIzaSyAi0oVNVO-e603aUY8SILdD4v9bVBkmiTg",
view:"google-map",
id:"map",
zoom:6,
center:[ 48.724, 8.215 ]
});
An array of two elements (latitude and longitude) with comma delimiter.
Back to top