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.

10 lines
272 B

import MapService3D from '../mapServiceCommon/MapService3D';
function Mapbox3D() {
MapService3D.apply(this, arguments);
}
Mapbox3D.prototype = new MapService3D();
Mapbox3D.prototype.constructor = Mapbox3D;
Mapbox3D.prototype.type = 'mapbox3D';
export default Mapbox3D;