We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9ed46d commit 4535320Copy full SHA for 4535320
src/components/HeatMap.js
@@ -58,7 +58,7 @@ export class HeatMap extends React.Component {
58
}
59
60
const data = positions.map((pos) => {
61
- return new google.maps.LatLng(pos.lat, pos.lng);
+ return {location: new google.maps.LatLng(pos.lat, pos.lng), weight:pos.weight}
62
});
63
64
const pref = {
0 commit comments