This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { DrawingManager } from 'react-google-maps/lib/components/drawing/DrawingManager'; | |
import { connect } from 'react-redux'; | |
import PropTypes from 'prop-types'; | |
import { mapConfig } from '../../../../constants/component-configs'; | |
import { | |
setShapeEventListener, | |
getShapeArea, | |
getFiltersFromGoogleMapsShape, | |
convertFromGoogleMapsShape |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const polygonEvents = ['set_at', 'insert_at', 'remove_at']; | |
const circleEvents = ['center_changed', 'radius_changed']; | |
import turfCircle from '@turf/circle'; | |
import { polygon as turfPolygon } from '@turf/helpers'; | |
import { featureToWKT } from './map-utilities'; | |
import { cond, has, hasIn, pipe, path } from 'ramda'; | |
export const setShapeEventListener = (shape, action) => { | |
if (shape.radius) { | |
circleEvents.forEach(event => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[email protected] # Packages every Meteor app needs to have | |
[email protected] # Packages for a great mobile UX | |
[email protected] # Reactive variable for tracker | |
[email protected] # Meteor's client-side reactive programming library | |
[email protected] # CSS minifier run for production mode | |
[email protected] # JS minifier run for production mode | |
[email protected] # ECMAScript 5 compatibility for older browsers. | |
static-html | |
[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "adminpanel", | |
"private": true, | |
"main": "server.js", | |
"browser": "client.js", | |
"scripts": { | |
"start": "meteor run" | |
}, | |
"dependencies": { | |
"accounting": "^0.4.1", |