-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ol-map): make map instance public
- Loading branch information
Showing
40 changed files
with
3,943 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
import { FrameworkConfiguration } from 'aurelia-framework'; | ||
import { AureliaOpenlayersConfiguration } from './ol-configuration'; | ||
import { OlMapService } from './services/ol-map-service'; | ||
import { OlMap } from './ol-map'; | ||
/** | ||
* Configures the plugin. | ||
*/ | ||
export declare function configure(frameworkConfig: FrameworkConfiguration, callback?: (config: AureliaOpenlayersConfiguration) => void): void; | ||
export { AureliaOpenlayersConfiguration, OlMapService }; | ||
export { AureliaOpenlayersConfiguration }; | ||
export { OlMapService }; | ||
export { OlMap }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
/// <reference types="openlayers" /> | ||
import { DefaultMapSettings } from './ol-map-defaults'; | ||
import { OlMapService } from './services/ol-map-service'; | ||
import * as ol from 'openlayers'; | ||
export declare class OlMap { | ||
private settings; | ||
private olMapService; | ||
map: ol.Map; | ||
private mapReference; | ||
private map; | ||
constructor(settings: DefaultMapSettings, olMapService: OlMapService); | ||
attached(): void; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
import { FrameworkConfiguration } from 'aurelia-framework'; | ||
import { AureliaOpenlayersConfiguration } from './ol-configuration'; | ||
import { OlMapService } from './services/ol-map-service'; | ||
import { OlMap } from './ol-map'; | ||
/** | ||
* Configures the plugin. | ||
*/ | ||
export declare function configure(frameworkConfig: FrameworkConfiguration, callback?: (config: AureliaOpenlayersConfiguration) => void): void; | ||
export { AureliaOpenlayersConfiguration, OlMapService }; | ||
export { AureliaOpenlayersConfiguration }; | ||
export { OlMapService }; | ||
export { OlMap }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
/// <reference types="openlayers" /> | ||
import { DefaultMapSettings } from './ol-map-defaults'; | ||
import { OlMapService } from './services/ol-map-service'; | ||
import * as ol from 'openlayers'; | ||
export declare class OlMap { | ||
private settings; | ||
private olMapService; | ||
map: ol.Map; | ||
private mapReference; | ||
private map; | ||
constructor(settings: DefaultMapSettings, olMapService: OlMapService); | ||
attached(): void; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
import { FrameworkConfiguration } from 'aurelia-framework'; | ||
import { AureliaOpenlayersConfiguration } from './ol-configuration'; | ||
import { OlMapService } from './services/ol-map-service'; | ||
import { OlMap } from './ol-map'; | ||
/** | ||
* Configures the plugin. | ||
*/ | ||
export declare function configure(frameworkConfig: FrameworkConfiguration, callback?: (config: AureliaOpenlayersConfiguration) => void): void; | ||
export { AureliaOpenlayersConfiguration, OlMapService }; | ||
export { AureliaOpenlayersConfiguration }; | ||
export { OlMapService }; | ||
export { OlMap }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
/// <reference types="openlayers" /> | ||
import { DefaultMapSettings } from './ol-map-defaults'; | ||
import { OlMapService } from './services/ol-map-service'; | ||
import * as ol from 'openlayers'; | ||
export declare class OlMap { | ||
private settings; | ||
private olMapService; | ||
map: ol.Map; | ||
private mapReference; | ||
private map; | ||
constructor(settings: DefaultMapSettings, olMapService: OlMapService); | ||
attached(): void; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.