Skip to content
Snippets Groups Projects
Commit 822ccca9 authored by Glenn Vorhes's avatar Glenn Vorhes
Browse files

make variables private

parent 192d1be6
No related branches found
No related tags found
No related merge requests found
{"version":3,"file":"mapPopup.js","sourceRoot":"","sources":["../../src/olHelpers/mapPopup.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,4BAAwB,eAAe,CAAC,CAAA;AAExC;;;GAGG;AAEU,gBAAQ,GAAG,IAAI,qBAAW,EAAiB,CAAC;AACzD;kBAAe,gBAAQ,CAAC"}
\ No newline at end of file
{"version":3,"file":"mapPopup.js","sourceRoot":"","sources":["../../src/olHelpers/mapPopup.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,4BAAwB,eAAe,CAAC,CAAA;AAExC;;;GAGG;AACU,gBAAQ,GAAG,IAAI,qBAAW,EAAiB,CAAC;AACzD;kBAAe,gBAAQ,CAAC"}
\ No newline at end of file
......@@ -43,25 +43,25 @@ export declare class FeatureLayerProperties {
* @augments MapInteractionBase
*/
export declare class MapPopupCls extends MapInteractionBase {
_popupOpen: boolean;
_passThroughLayerFeatureArray: Array<FeatureLayerProperties>;
_currentPopupIndex: number;
_popupContentLength: number;
_esriMapServiceLayers: Array<LayerEsriMapServer>;
_$popupCloser: JQuery;
_$popupContent: JQuery;
_$popupContainer: JQuery;
_popupOverlay: ol.Overlay;
_arrPopupLayers: Array<LayerBaseVector>;
_popupCoordinate: ol.Coordinate;
_popupChangedFunctions: Array<popupChangedFunction>;
_mapClickFunctions: Array<Function>;
_selectionLayerLookup: Object;
_arrPopupLayerIds: Array<string>;
_arrPopupLayerNames: Array<string>;
_arrPopupOlLayers: Array<ol.layer.Vector>;
_arrPopupContentFunction: Array<popupCallback>;
_selectionLayers: Array<ol.layer.Vector>;
private _popupOpen;
private _passThroughLayerFeatureArray;
private _currentPopupIndex;
private _popupContentLength;
private _esriMapServiceLayers;
private _$popupCloser;
private _$popupContent;
private _$popupContainer;
private _popupOverlay;
private _arrPopupLayers;
private _popupCoordinate;
private _popupChangedFunctions;
private _mapClickFunctions;
private _selectionLayerLookup;
private _arrPopupLayerIds;
private _arrPopupLayerNames;
private _arrPopupOlLayers;
private _arrPopupContentFunction;
private _selectionLayers;
/**
* Definition for openlayers style function
* @callback olStyleFunction
......
......@@ -17,7 +17,7 @@ import ol from 'custom-ol';
* @param {number} [options.maxZoom=undefined] max zoom
* @param {boolean} [options.baseSwitcher=true] if add base map switcher
* @param {boolean} [options.fullScreen=false] if add base map switcher
* @returns the ol map
* @returns {ol.Map} the ol map
*/
export declare function quickMap(options?: quickMapOptions): ol.Map;
export default quickMap;
......@@ -21,7 +21,7 @@ var nm = provide_1.default('olHelpers');
* @param {number} [options.maxZoom=undefined] max zoom
* @param {boolean} [options.baseSwitcher=true] if add base map switcher
* @param {boolean} [options.fullScreen=false] if add base map switcher
* @returns the ol map
* @returns {ol.Map} the ol map
*/
function quickMap(options) {
var m = quickMapBase_1.quickMapBase(options);
......
......@@ -8,6 +8,5 @@ import MapPopupCls from './mapPopupCls';
* The single popup object catch is that it is common to multimap pages
* @type {MapPopupCls}
*/
export const mapPopup = new MapPopupCls() as MapPopupCls;
export default mapPopup;
......@@ -76,25 +76,25 @@ export class FeatureLayerProperties {
* @augments MapInteractionBase
*/
export class MapPopupCls extends MapInteractionBase {
_popupOpen: boolean;
_passThroughLayerFeatureArray: Array<FeatureLayerProperties>;
_currentPopupIndex: number;
_popupContentLength: number;
_esriMapServiceLayers: Array<LayerEsriMapServer>;
_$popupCloser: JQuery;
_$popupContent: JQuery;
_$popupContainer: JQuery;
_popupOverlay: ol.Overlay;
_arrPopupLayers: Array<LayerBaseVector>;
_popupCoordinate: ol.Coordinate;
_popupChangedFunctions: Array<popupChangedFunction>;
_mapClickFunctions: Array<Function>;
_selectionLayerLookup: Object;
_arrPopupLayerIds: Array<string>;
_arrPopupLayerNames: Array<string>;
_arrPopupOlLayers: Array<ol.layer.Vector>;
_arrPopupContentFunction: Array<popupCallback>;
_selectionLayers: Array<ol.layer.Vector>;
private _popupOpen: boolean;
private _passThroughLayerFeatureArray: Array<FeatureLayerProperties>;
private _currentPopupIndex: number;
private _popupContentLength: number;
private _esriMapServiceLayers: Array<LayerEsriMapServer>;
private _$popupCloser: JQuery;
private _$popupContent: JQuery;
private _$popupContainer: JQuery;
private _popupOverlay: ol.Overlay;
private _arrPopupLayers: Array<LayerBaseVector>;
private _popupCoordinate: ol.Coordinate;
private _popupChangedFunctions: Array<popupChangedFunction>;
private _mapClickFunctions: Array<Function>;
private _selectionLayerLookup: Object;
private _arrPopupLayerIds: Array<string>;
private _arrPopupLayerNames: Array<string>;
private _arrPopupOlLayers: Array<ol.layer.Vector>;
private _arrPopupContentFunction: Array<popupCallback>;
private _selectionLayers: Array<ol.layer.Vector>;
/**
* Definition for openlayers style function
......
......@@ -23,7 +23,7 @@ let nm = provide('olHelpers');
* @param {number} [options.maxZoom=undefined] max zoom
* @param {boolean} [options.baseSwitcher=true] if add base map switcher
* @param {boolean} [options.fullScreen=false] if add base map switcher
* @returns the ol map
* @returns {ol.Map} the ol map
*/
export function quickMap(options? : quickMapOptions): ol.Map {
let m = quickMapBase(options);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment