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

make jquery parameter for vector popups optional

parent a08fed9e
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ export interface popupCallback { ...@@ -17,7 +17,7 @@ export interface popupCallback {
* @param featureProperties * @param featureProperties
* @param jqRef * @param jqRef
*/ */
(featureProperties: Object, jqRef: JQuery): string | boolean; (featureProperties: Object, jqRef?: JQuery): string | boolean;
} }
export declare class FeatureLayerProperties { export declare class FeatureLayerProperties {
feature: ol.Feature; feature: ol.Feature;
......
...@@ -26,7 +26,7 @@ export interface popupCallback{ ...@@ -26,7 +26,7 @@ export interface popupCallback{
* @param featureProperties * @param featureProperties
* @param jqRef * @param jqRef
*/ */
(featureProperties: Object, jqRef: JQuery): string | boolean; (featureProperties: Object, jqRef?: JQuery): string | boolean;
} }
interface mapEvent{ interface mapEvent{
......
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