Yandex Maps API Gridmap Module
Yandex.Maps API module for data visualization.
Gridmap is a graphical representation of some spatial data, where depending on the number of entered points cell of grid (hexogon or square) are painted in different colors.
Gridmap
class allows to construct and display such representations over geographical maps.
Loading
-
Put module source code (gridmap.min.js) on your CDN.
-
Load both Yandex Maps JS API 2.1 and module source code by adding following code into <head> section of your page:
<!-- Change my.cdn.tld to your CDN host name -->If you use GeoJSON data:
<!-- Change my.cdn.tld to your CDN host name -->If you use npm:
npm i --save git+https://github.com/yandex-shri-fx-team/ymaps-gridmap.git;// Or with babel; -
Get access to module functions by using ymaps.modules.require method:
ymapsmodules;
Gridmap
Gridmap module.
Requires: module:Polygonmap
, module:util.bounds
- Gridmap
- Gridmap ⏏
- new Gridmap([data], [options])
- instance
- .setMap(map) ⇒
Polygonmap
- .getMap() ⇒
Map
- .setMap(map) ⇒
- inner
- ~GridBounds :
Object
- ~GridOptions :
Object
- ~HexagonGripParams :
Object
- ~SquareGripParams :
Object
- ~GridBounds :
- Gridmap ⏏
Gridmap ⏏
new Gridmap([data], [options])
Param | Type | Description |
---|---|---|
[data] | Object |
Points, GeoJSON FeatureCollections. |
data.polygons | Object |
GeoJSON FeatureCollections. |
data.points | Object |
GeoJSON FeatureCollections. |
[options] | Object |
Options for customization. See more options in Polygonmap. |
[options.zoom] | number |
Zoom which will be used for the grid calculation. |
[options.grid] | GridOptions |
Options which will be used in a grid calculation. |
[options.grid.type] | GridOptions |
Type of grid. Can be "hexagon" |
[options.grid.params] | GridParamsOptions |
Options which will be used in a grid render |
[options.grid.params.bigRadius] | number |
Radius of hexagon. |
[options.grid.params.sideLength] | number |
Side length of square. |
[options.grid.bouds] | GridBoundsOptions |
Options of bound for render grid. |
[options.grid.bouds] | number |
Options of bound for render grid. |
[options.grid.bouds.leftBottom] | Array |
Coordinates of left bottom point of bound. |
[options.grid.bouds.topRight] | Array |
Coordinates of right top point of bound. |
Polygonmap
gridmap.setMap(map) ⇒ Set Map instance to render Polygonmap object.
Kind: instance method of Gridmap
Returns: Polygonmap
- Self-reference.
Access: public
Param | Type | Description |
---|---|---|
map | Map |
Map instance. |
Map
gridmap.getMap() ⇒ Get the Map instance.
Kind: instance method of Gridmap
Returns: Map
- Reference to Map instance.
Access: public
Object
Gridmap~GridBounds : Kind: inner typedef of Gridmap
Properties
Name | Type | Description |
---|---|---|
leftBotom | Array.<number> |
Geographical coordinate of the left bottom point. |
rigthTop | Array.<number> |
Geographical coordinate of the right top point. |
Object
Gridmap~GridOptions : Kind: inner typedef of Gridmap
Properties
Name | Type | Description |
---|---|---|
type | string |
Type of grid. |
[bounds] | GridBounds |
Bounds for grid. |
params | HexagonGripParams | SquareGripParams |
Params of grid. |
Object
Gridmap~HexagonGripParams : Kind: inner typedef of Gridmap
Properties
Name | Type | Description |
---|---|---|
bigRadius | number |
Length of the big radius of a hexagon in pixels. |
Object
Gridmap~SquareGripParams : Kind: inner typedef of Gridmap
Properties
Name | Type | Description |
---|---|---|
sideLenght | number |
Length of a side of square in pixels. |
Examples
Displaying gridmap over geographical map
ymapsmodules;