-
Notifications
You must be signed in to change notification settings - Fork 925
Expand file tree
/
Copy pathHeatmapLayer.js
More file actions
194 lines (160 loc) · 5 KB
/
HeatmapLayer.js
File metadata and controls
194 lines (160 loc) · 5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
"use strict"
Object.defineProperty(exports, "__esModule", {
value: true,
})
exports.HeatmapLayer = undefined
var _defineProperty2 = require("babel-runtime/helpers/defineProperty")
var _defineProperty3 = _interopRequireDefault(_defineProperty2)
var _getPrototypeOf = require("babel-runtime/core-js/object/get-prototype-of")
var _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf)
var _classCallCheck2 = require("babel-runtime/helpers/classCallCheck")
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2)
var _createClass2 = require("babel-runtime/helpers/createClass")
var _createClass3 = _interopRequireDefault(_createClass2)
var _possibleConstructorReturn2 = require("babel-runtime/helpers/possibleConstructorReturn")
var _possibleConstructorReturn3 = _interopRequireDefault(
_possibleConstructorReturn2
)
var _inherits2 = require("babel-runtime/helpers/inherits")
var _inherits3 = _interopRequireDefault(_inherits2)
var _invariant = require("invariant")
var _invariant2 = _interopRequireDefault(_invariant)
var _react = require("react")
var _react2 = _interopRequireDefault(_react)
var _propTypes = require("prop-types")
var _propTypes2 = _interopRequireDefault(_propTypes)
var _MapChildHelper = require("../../utils/MapChildHelper")
var _constants = require("../../constants")
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : { default: obj }
}
/**
* A wrapper around `google.maps.visualization.HeatmapLayer`
*
* @see https://developers.google.com/maps/documentation/javascript/3.exp/reference#HeatmapLayer
*/
var HeatmapLayer = (exports.HeatmapLayer = (function(_React$PureComponent) {
;(0, _inherits3.default)(HeatmapLayer, _React$PureComponent)
/*
* @see https://developers.google.com/maps/documentation/javascript/3.exp/reference#HeatmapLayer
*/
function HeatmapLayer(props, context) {
;(0, _classCallCheck3.default)(this, HeatmapLayer)
var _this = (0, _possibleConstructorReturn3.default)(
this,
(
HeatmapLayer.__proto__ || (0, _getPrototypeOf2.default)(HeatmapLayer)
).call(this, props, context)
)
;(0, _invariant2.default)(
google.maps.visualization,
'Did you include "libraries=visualization" in the URL?'
)
var heatmapLayer = new google.maps.visualization.HeatmapLayer()
;(0, _MapChildHelper.construct)(
HeatmapLayer.propTypes,
updaterMap,
_this.props,
heatmapLayer
)
heatmapLayer.setMap(_this.context[_constants.MAP])
_this.state = (0, _defineProperty3.default)(
{},
_constants.HEATMAP_LAYER,
heatmapLayer
)
return _this
}
;(0, _createClass3.default)(HeatmapLayer, [
{
key: "componentDidMount",
value: function componentDidMount() {
;(0, _MapChildHelper.componentDidMount)(
this,
this.state[_constants.HEATMAP_LAYER],
eventMap
)
},
},
{
key: "componentDidUpdate",
value: function componentDidUpdate(prevProps) {
;(0, _MapChildHelper.componentDidUpdate)(
this,
this.state[_constants.HEATMAP_LAYER],
eventMap,
updaterMap,
prevProps
)
},
},
{
key: "componentWillUnmount",
value: function componentWillUnmount() {
;(0, _MapChildHelper.componentWillUnmount)(this)
var heatmapLayer = this.state[_constants.HEATMAP_LAYER]
if (heatmapLayer) {
heatmapLayer.setMap(null)
}
},
},
{
key: "render",
value: function render() {
return false
},
/**
* Returns the data points currently displayed by this heatmap.
* @type MVCArray<LatLng|WeightedLocation>
* @public
*/
},
{
key: "getData",
value: function getData() {
return this.state[_constants.HEATMAP_LAYER].getData()
},
},
])
return HeatmapLayer
})(_react2.default.PureComponent))
/*
* -----------------------------------------------------------------------------
* This file is auto-generated from the corresponding file at `src/macros/`.
* Please **DO NOT** edit this file directly when creating PRs.
* -----------------------------------------------------------------------------
*/
/* global google */
HeatmapLayer.propTypes = {
/**
* @type MVCArray<LatLng|WeightedLocation>|Array<LatLng|WeightedLocation>
*/
defaultData: _propTypes2.default.any,
/**
* @type HeatmapLayerOptions
*/
defaultOptions: _propTypes2.default.any,
/**
* @type MVCArray<LatLng|WeightedLocation>|Array<LatLng|WeightedLocation>
*/
data: _propTypes2.default.any,
/**
* @type HeatmapLayerOptions
*/
options: _propTypes2.default.any,
}
HeatmapLayer.contextTypes = (0, _defineProperty3.default)(
{},
_constants.MAP,
_propTypes2.default.object
)
exports.default = HeatmapLayer
var eventMap = {}
var updaterMap = {
data: function data(instance, _data) {
instance.setData(_data)
},
options: function options(instance, _options) {
instance.setOptions(_options)
},
}