JS API
- Parameters
- Options
- Example
- Methods
- fitToBoundingBox
- getBoundingBox
- getInitialBoundingBox
- getLayers
- getMouseMode
- off
- on
- once
- refresh
- reset
- setMouseMode
- usingLayer
- usingNewLayer
- Events
- Parameters
- Example
- Methods
- addFeature
- addFeatureCollection
- bringForwards
- bufferGeometry
- changeProperties
- clearFilters
- clearFeatures
- clearStyle
- clipByFeatureCollection
- convertToCentroids
- filterByBoundingBox
- filterByFeatureCollection
- filterByNearest
- filterByText
- getFeatureCollection
- hide
- sendBackwards
- show
- style
- update
- usingFeature
usingLayerSource
Gets a Query Object based on the key of the layer-source.
This object is a fluent object and can be used to chain method calls to the query as per the example below.
Parameters
Name | Required | Description |
---|---|---|
sourceKey | Yes | The key of the layer-source to be used in the query |
Example
var qry = new Mapzania.QueryEngine();
qry.usingLayerSource("COUNTRIES")
.filterByText("Landlocked=='Y'")
.bufferGeometry(500)
.apply()
.then(function (data) {
console.log(data);
})