You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
382 B

import Mapbox3D from './mapbox3D/Mapbox3D';
import createMapService3DCreator from './mapServiceCommon/createMapService3DCreator';
var mapbox3DCreator = createMapService3DCreator('mapbox3D', Mapbox3D, function (mapbox3DList) {
mapbox3DList.forEach(function (mapbox3D) {
mapbox3D.setCameraOption(mapbox3D.model.getMapboxCameraOption());
});
});
export default mapbox3DCreator;