Hi
I,m going to change default overview expand factor, but it return error:
var overviewMapDijit = new OverviewMap({
map: map,
visible: true
expandfactor:4
});
overviewMapDijit.startup();
Solved! Go to Solution.
Anjelina,
Your error is because you forget a comma after the visible property.
var overviewMapDijit = new OverviewMap({
map: map,
visible: true,
expandfactor: 4
});
overviewMapDijit.startup();
Anjelina,
Your error is because you forget a comma after the visible property.
var overviewMapDijit = new OverviewMap({
map: map,
visible: true,
expandfactor: 4
});
overviewMapDijit.startup();