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

make options optional

parent 6c34f291
No related branches found
No related tags found
No related merge requests found
......@@ -4,11 +4,11 @@
import { LayerBaseVector, LayerBaseVectorOptions } from './LayerBaseVector';
import ol from 'custom-ol';
export interface LayerBaseVectorEsriOptions extends LayerBaseVectorOptions {
format: string;
outSR: number;
where: string;
outFields: string;
useEsriStyle: boolean;
format?: string;
outSR?: number;
where?: string;
outFields?: string;
useEsriStyle?: boolean;
}
/**
* Base layer for esri vector layers
......
......@@ -10,11 +10,11 @@ const $ = require('jquery');
let nm = provide('layers');
export interface LayerBaseVectorEsriOptions extends LayerBaseVectorOptions{
format: string;
outSR: number;
where: string;
outFields: string;
useEsriStyle: boolean;
format?: string;
outSR?: number;
where?: string;
outFields?: string;
useEsriStyle?: boolean;
}
/**
......
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