Hello, I am trying to embed a map into a webix widget
var googleMapsItem = {
cols:[
{ header:"Map to view",
body:{
id:"googleMapsId", view:"reactive", template: "googleMap"}
}
]
};
Now I need to pass the options to the googleMap template as well. I am using the package
dburles:google-maps/template.google-maps.js
for this.
{{> googleMap name="exampleMap" options=exampleMapOptions}}
A normal div works fine and displays the map, but here for the template I must pass “name” and “options”. Is there a way to pass these objects to webix-meteor-template as well?
Thx a lot for any help!
java99