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.
12 lines
331 B
12 lines
331 B
import MapService3D from '../mapServiceCommon/MapService3D';
|
|
|
|
function Maptalks3D() {
|
|
MapService3D.apply(this, arguments);
|
|
this.maxPitch = 85;
|
|
this.zoomOffset = 1;
|
|
}
|
|
|
|
Maptalks3D.prototype = new MapService3D();
|
|
Maptalks3D.prototype.constructor = Maptalks3D;
|
|
Maptalks3D.prototype.type = 'maptalks3D';
|
|
export default Maptalks3D; |