new Catalog(options)
The Navionics Full Catalog showed on Map with product list and product items.
Name | Type | Description | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
array | object |
optional
Some initialization options.
|
- See:
-
JNC.Views.Map
for more, map related, paramsJNC.Views.BoatingNavionicsMap
for more, boating-map related, params
Example
var catalog1 = new JNC.ProductCatalog.Catalog({
container: '#catalog',
zoom: 0.8,
navKey: '***'
});
var catalog2 = new JNC.ProductCatalog.Catalog({
container: '#catalog',
zoom: 0.8,
navKey: '***',
enabledProducts: [
{ 'product': 'Gold'}, //Show all
{ 'product': 'HotMapsPlatinum', 'showDescription': false}, // dont' show the description
{ 'product': 'HotMapsPremium', 'showButtonPanel': false}, // don't show the button
{ 'product': 'NavionicsPlus', 'url': 'https://www.esa.int'} //show all but the link have a different hendpoints
]
});