(name: string)
| 285 | } |
| 286 | |
| 287 | cloneShallow(name: string): GeoJSONRegion { |
| 288 | name == null && (name = this.name); |
| 289 | const newRegion = new GeoJSONRegion(name, this.geometries, this._center); |
| 290 | newRegion._rect = this._rect; |
| 291 | newRegion.transformTo = null; // Simply avoid to be called. |
| 292 | return newRegion; |
| 293 | } |
| 294 | } |
| 295 | |
| 296 | export class GeoSVGRegion extends Region { |
no outgoing calls
no test coverage detected