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
usingFeature
Get a Feature Object from the map based on an id parameter.
This feature object is a fluent object and can be used to chain method calls to the feature as per the example below.
Parameters
Name | Required | Description |
---|---|---|
id | Yes | The id of the feature that will be used. |
Example
var map = new Mapzania.Map("map-div", "AFRICA");
map.usingLayer("COUNTRIES")
.usingFeature("107")
.show()
.style({ fillColor: "#FF0000"})
.update();