Git Product home page Git Product logo

old-examples's Introduction

Google Map React · npm version Build Status PRs Welcome

google-map-react is a component written over a small set of the Google Maps API. It allows you to render any React component on the Google Map. It is fully isomorphic and can render on a server. Additionally, it can render map components in the browser even if the Google Maps API is not loaded. It uses an internal, tweakable hover algorithm - every object on the map can be hovered.

It allows you to create interfaces like this example (You can scroll the table, zoom/move the map, hover/click on markers, and click on table rows)

Getting started

In the simple case you just need to add lat and lng props to any child of GoogleMapReact component.

See it in action at jsbin

import React from "react";
import GoogleMapReact from 'google-map-react';

const AnyReactComponent = ({ text }) => <div>{text}</div>;

export default function SimpleMap(){
  const defaultProps = {
    center: {
      lat: 10.99835602,
      lng: 77.01502627
    },
    zoom: 11
  };

  return (
    // Important! Always set the container height explicitly
    <div style={{ height: '100vh', width: '100%' }}>
      <GoogleMapReact
        bootstrapURLKeys={{ key: "" }}
        defaultCenter={defaultProps.center}
        defaultZoom={defaultProps.zoom}
      >
        <AnyReactComponent
          lat={59.955413}
          lng={30.337844}
          text="My Marker"
        />
      </GoogleMapReact>
    </div>
  );
}

My map doesn't appear!

  • Make sure the container element has width and height. The map will try to fill the parent container, but if the container has no size, the map will collapse to 0 width / height. This is not a requirement for google-map-react, its a requirement for google-maps in general.

Installation

npm:

npm install --save google-map-react

yarn:

yarn add google-map-react

Features

Works with your Components

Instead of the default Google Maps markers, balloons and other map components, you can render your cool animated react components on the map.

Isomorphic Rendering

It renders on the server. (Welcome search engines) (you can disable javascript in browser dev tools, and reload any example page to see how it works)

Component Positions Calculated Independently of Google Maps API

It renders components on the map before (and even without) the Google Maps API loaded.

Google Maps API Loads on Demand

There is no need to place a <script src= tag at top of page. The Google Maps API loads upon the first usage of the GoogleMapReact component.

Use Google Maps API

You can access to Google Maps map and maps objects by using onGoogleApiLoaded, in this case you will need to set yesIWantToUseGoogleMapApiInternals to true

...

const handleApiLoaded = (map, maps) => {
  // use map and maps objects
};

...

<GoogleMapReact
  bootstrapURLKeys={{ key: /* YOUR KEY HERE */ }}
  defaultCenter={this.props.center}
  defaultZoom={this.props.zoom}
  yesIWantToUseGoogleMapApiInternals
  onGoogleApiLoaded={({ map, maps }) => handleApiLoaded(map, maps)}
>
  <AnyReactComponent
    lat={59.955413}
    lng={30.337844}
    text="My Marker"
  />
</GoogleMapReact>

PST: Remember to set yesIWantToUseGoogleMapApiInternals to true.

Example here

Internal Hover Algorithm

Now every object on the map can be hovered (however, you can still use css hover selectors if you want). If you try zooming out here example, you will still be able to hover on almost every map marker.

Examples

Documentation

You can find the documentation here:

Contribute

Local development is broken into two parts (ideally using two tabs).

First, run rollup to watch your src/ module and automatically recompile it into dist/ whenever you make changes.

npm start # runs rollup with watch flag

The second part will be running the example/ create-react-app that's linked to the local version of your module.

# (in another tab)
cd example
npm start # runs create-react-app dev server

Now, anytime you make a change to your library in src/ or to the example app's example/src, create-react-app will live-reload your local dev server so you can iterate on your component in real-time.

Manual link-install

If you get the error Module not found: Can't resolve 'google-react-map'... while trying to run the example app, you need to manually link your local development module, try the following steps:

  1. In the root folder:
npm link
  1. Go into example/ and (after installing other dependencies) execute:
npm link google-map-react

License

MIT

Known Issues

!!! We are looking for contributors

We're actively looking for contributors, please send a message to the Owner or any of the Collaborators.

old-examples's People

Contributors

bryant1410 avatar dragorww avatar istarkov avatar itsmichaeldiego avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

old-examples's Issues

Use Default Marker

Hi there! I know how to use a custom marker, but how do we use the default Google Maps Marker? I don't need the customization, but I can't find where to use the original.

addComponentAsRefTo() error because google_map.js loads a second copy of React

I'm getting this error:
Uncaught Error: Invariant Violation: addComponentAsRefTo(...): Only a ReactOwner can have refs. This usually means that you're trying to add a ref to a component that doesn't have an owner (that is, was not created inside of another component'srendermethod). Try rendering this component inside of a new top-level component which will hold the ref.

Somehow the GoogleMap component was loading a second copy of React. I think it's similar to what these people are seeing:
facebook/react#3320

I had to use the PrefetchPlugin on react to get google-map-react to work. Maybe the rest of my code was loading plain old 'react' and GoogleMap is loading 'react/addons', but in any case I think it would help other developers new to google-map-react to have a note about this.

Bug, custom pins move on zoom

Hello, the pines now when zooming move from their current position and before that did not happen, does anyone know how to solve this serious problem?

Failed to load resource: net::ERR_CONNECTION_REFUSED

Hello,

I am trying to run the main example following the readme, the server runs fine but when I hit the url I get Failed to load resource: net::ERR_CONNECTION_REFUSED
I get that for all browsers so I don't believe it is a cache / adblock issue..could you please help?
screen shot 2016-07-05 at 5 44 11 am

On Center Change Issues

Hi,

Whenever I zoom, I have onChange to update my zoom which should change my makers. Instead I am seeing only the map zoom and my markers not change. The console has the following the following error output (note: react 0.14). I have found it also will not ever re-render if I change the center - so for now I have put in center to be some static value.

google_map.js:691 GoogleMap center not eq: [39.73953411213935, -104.98888952907988] [39.739336111111115, -104.99163611111113]

class PictureMap extends React.Component {
...
    _onChange({center, zoom, bounds, ...other}) {
        if(!this.props.onZoomChange) return;
        this.props.onZoomChange(zoom);
        this.setState({zoom: zoom});
    }
...
    render() {.
....
        return (
            <div style={greatPlaceStyle}>
                <GoogleMap
                    center={STATIC_CENTER}
                    defaultZoom={this.props.zoom}
                    onChange={this._onChange}
                >
                    {MARKERS}
                </GoogleMap>
            </div>
        );
}
PictureMap = controllable(PictureMap, ['zoom']);

export {PictureMap};

Thanks in advance for your suggestions!

Marc

regarding performance

I see that when I zoom in/out, it redraws the map and seems very slow. I am wondering if there is anyway you can update the markers without redrawing the map like using setVisibility method on markers in GoogleMapsAPI?

clusters from api data

Hi there,

in the clustering example you are using data from a static file.
i have a use case where i want to load the GMap.js inside App.js that holds the state and the markersData would be in the state. how can i load this into GMap.js as props and then if state changes clusters change with it?
thanks
Cezar

Re-positionate marker with balloon

I know this is not an issue, but... is there a way to fit within the map bounds an infowindow when you click on a marker? I'm trying to look in the documentation but I find nothing about it :/

resetBoundsOnResize not working

Hi :)
Thanks for your nice plugin, it works really well, besides one issue using resetBoundsOnResize in my project. Feels like setting it to true, doesn't have any effect.
Instead of changing the center of my map on resize nothing happens.
I built a very simplified demonstration of the problem:
https://codepen.io/bauschig/pen/KqepKq

Can you may help me out with this?

Thanks a lot!

Error installing

Hi. Thank you for you code. I'm trying deploy this project in my local pc but i have errors. Can help me please?

0 info it worked if it ends with ok
1 verbose cli [ 'C:\Program Files\nodejs\node.exe',
1 verbose cli 'C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js',
1 verbose cli 'run',
1 verbose cli 'hot-dev-server' ]
2 info using [email protected]
3 info using [email protected]
4 verbose run-script [ 'prehot-dev-server', 'hot-dev-server', 'posthot-dev-server' ]
5 info prehot-dev-server [email protected]
6 info hot-dev-server [email protected]
7 verbose unsafe-perm in lifecycle true
8 info [email protected] Failed to exec hot-dev-server script
9 verbose stack Error: [email protected] hot-dev-server: npm run clean;webpack-dev-server --config webpack-hot-dev-server.config.js --hot --progress
9 verbose stack Exit status 1
9 verbose stack at EventEmitter. (C:\Program Files\nodejs\node_modules\npm\lib\utils\lifecycle.js:213:16)
9 verbose stack at EventEmitter.emit (events.js:110:17)
9 verbose stack at ChildProcess. (C:\Program Files\nodejs\node_modules\npm\lib\utils\spawn.js:24:14)
9 verbose stack at ChildProcess.emit (events.js:110:17)
9 verbose stack at maybeClose (child_process.js:1015:16)
9 verbose stack at Process.ChildProcess._handle.onexit (child_process.js:1087:5)
10 verbose pkgid [email protected]
11 verbose cwd D:\WORKSPACES\nodeJS\google-map-react-examples
12 error Windows_NT 6.1.7601
13 error argv "C:\Program Files\nodejs\node.exe" "C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js" "run" "hot-dev-server"
14 error node v0.12.4
15 error npm v2.10.1
16 error code ELIFECYCLE
17 error [email protected] hot-dev-server: npm run clean;webpack-dev-server --config webpack-hot-dev-server.config.js --hot --progress
17 error Exit status 1
18 error Failed at the [email protected] hot-dev-server script 'npm run clean;webpack-dev-server --config webpack-hot-dev-server.config.js --hot --progress'.
18 error This is most likely a problem with the google-map-react-examples package,
18 error not with npm itself.
18 error Tell the author that this fails on your system:
18 error npm run clean;webpack-dev-server --config webpack-hot-dev-server.config.js --hot --progress
18 error You can get their info via:
18 error npm owner ls google-map-react-examples
18 error There is likely additional logging output above.
19 verbose exit [ 1, true ]

laggy on smartphone

I'm new to programming. Do you think this would be difficult to modify for ios/android?

Polyline is not working on path change

Polyline is not working on path change with setState

const TrackGoogleMap = withGoogleMap(props => (
  <GoogleMap
    defaultZoom={14}
    defaultCenter={props.path[0]}
  >
    {props.path.length && <Polyline options={{strokeColor: '#2e10ff', geodesic: true }} path={props.path} />}
  </GoogleMap>
));

class Register extends Component {

	state = {
    path: [{lat: 8.5088733, lng: 76.909832}, {lat: 8.5100829, lng: 76.9087966}, {lat: 8.5107991, lng: 76.9081663}],
  }

	componentDidMount() {
		const options = {
		  enableHighAccuracy: false,
		  timeout: 1000,
		  maximumAge: 0
		};
		navigator.geolocation.getCurrentPosition(this.onLocationChange);
		const id = navigator.geolocation.watchPosition(this.onLocationChange, (err) => {
		  console.warn('ERROR(' + err.code + '): ' + err.message);
		}, options);
  }

	onLocationChange = (pos) => {
	  var crd = pos.coords;
		const path = this.state.path;
		path.push({ lat: crd.latitude, lng: crd.longitude });
    this._timeoutId = setTimeout(() => {
       this.setState({path})
     }, 3000);
	}

	render() {
    const { errors, email, password, firstName, registerUser, inputChange } = this.props;
		console.log('this.state.path');
    return (
			<Layout title="Register">
				<div id="page-index" className="page" style={{paddingTop:60}}>
					<TrackGoogleMap
				    loadingElement={
				      <div style={{ height: `100%` }}>
				        <CircularProgress />
				      </div>
				    }
				    containerElement={
				      <div style={{ height: window.innerHeight }} />
				    }
				    mapElement={
				      <div style={{ height: window.innerHeight, width: `100%` }} />
				    }
        		path={this.state.path}
				  />
				</div>
			</Layout>);
	}
}

Cannot read property '_' of undefined

Cant get it to work on windows 10 getting the following errors.

Error
E:\downloads\downloads\google-map-react-examples-master\node_modules\underscore\underscore.js:17
var previousUnderscore = root._;
^

TypeError: Cannot read property '_' of undefined
at E:/downloads/downloads/google-map-react-examples-master/node_modules/underscore/underscore.js:15:32
at Object. (E:/downloads/downloads/google-map-react-examples-master/node_modules/underscore/underscore.js:1548:3)
at Module._compile (module.js:570:32)
at normalLoader (E:\downloads\downloads\google-map-react-examples-master\node_modules\babel-core\lib\api\register\node.js:199:5)
at Object.require.extensions.(anonymous function) [as .js] (E:\downloads\downloads\google-map-react-examples-master\node_modules\babel-core\lib\api\register\node.js:216:7)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.require (module.js:497:17)
at require (internal/module.js:20:19)

Config
$ npm -version
5.6.0

$ node --version
v6.11.2

I have tried to run it using Cygwin, CMD as admin both of them don't seem to be working.
Have tried to install webpack-dev-server separately to start "webpack-dev-server" which is not working either.

Has anyone got any idea whats wrong with this?

marker event does not fire in `map`

Cannot for the life of me get this event of to fire on the child Marker
anyone know why?

I have tried using onClick, using bind and onChildClick but nothing works

onSelectMarker = marker => e => {
    e.preventDefault();
    console.log("clicked");
  };
  render() {
    const data = this.props.searchedResponse;

    const Markers = data
      ? data.data.records.map(marker => {
          return (
            <Marker
              key={marker.recordid}
              lat={marker.fields.geom.coordinates[1]}
              lng={marker.fields.geom.coordinates[0]}
              onChildClick={() => this.onSelectMarker(marker)}
            />
          );
        })
      : null;
    return (
      <div className="map">
        <GoogleMapReact
          center={this.state.center}
          zoom={this.state.zoom}
          bootstrapURLKeys={{
            key: process.env.REACT_APP_GOOGLE_KEY
          }}
        >
          {Markers}
        </GoogleMapReact>
      </div>
    );
  }
}

Question: When to use translate3d

In one example using the ClusterMarker if seen:

	<Motion
		defaultStyle={defaultMotionStyle}
		style={motionStyle}
	>
		{
			({scale}) => (
				<div
					className={styles.marker}
					style={{
						transform: `translate3D(0,0,0) scale(${scale}, ${scale})`,
					}}
				>
					<div
						className={styles.text}
					>
						{data}
					</div>
				</div>
			)
		}
	</Motion>

Why is translate3D(0,0,0) used there? When I statically want to relative reposition the pin is translate superior to top, left, position: relative?

Use react-redux in place of redux/react

Hi istarkov,
Thank you for the amazing work on google-map-react. It has been a great help and learning experience going through the source code of the same. I noticed that the version of redux used is 0.11.1 in the examples, do you plan on updating the examples to use react-redux v4.0.0 since react bindings for redux officially moved to react-redux after v1.0.0-rc (https://github.com/rackt/redux/releases)?

github.io example site does work, missing API keys

Referencing this site:
http://google-map-react.github.io/google-map-react/map/events/

The site loads and then goes gray and shows: "Oops! Something went wrong.
This page didn't load Google Maps correctly. See the JavaScript console for technical details."

Console messages include:

Can't implement Styling Wizard

Hello,

I'm using the Custom Styling Wizard to get the silver style map. However, when I try to implement the JSON file to my project, it doesn't work.

This is my file:

// Packages
import React, {Component} from 'react';
import GoogleMapReact from 'google-map-react';

export default class Map extends Component {
    static defaultProps = {
        center: {lat: 51.909490, lng: 6.384903},
        zoom: 8,
        styles: require('../../constants/mapStyles')
    }


    render() {
        return (
            <div className='google-map' style={{height: '100vh', width: '100%'}}>
                <GoogleMapReact
                    bootstrapURLKeys={{key: 'AIzaSyClAqaUdtOKdG6zyT8wSNkuBhm1iOcfaVw'}}
                    defaultCenter={this.props.center}
                    defaultZoom={this.props.zoom}
                    defaultOptions={this.props.styles}>
                </GoogleMapReact>
            </div>
        )
    }
}

Problem in using google-map-react in ReactStaretkit

I am newbie to react,I want use google-map-react in React Starter Kit,First I download it, go to downloaded directory,
and first npm install , and then npm start, and everything is OK, server running on localhost:3001 , Then I don't Know how use your component :|
In first effort in root directory of react starter kit I try npm install --save google-map-react but I faced


npm ERR! Windows_NT 10.0.10586
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "--save" "google-map-react"
npm ERR! node v4.4.1
npm ERR! npm  v2.14.20
npm ERR! code EPEERINVALID

npm ERR! peerinvalid The package [email protected] does not satisfy its siblings' peerDependencies requirements!
npm ERR! peerinvalid Peer [email protected] wants eslint@^2.4.0
npm ERR! peerinvalid Peer [email protected] wants eslint@>=1.6.0 <3.0.0
npm ERR! peerinvalid Peer [email protected] wants eslint@<2.3.0

My Problem is How can I use google-map-react in react starter kit?

unnecessary renders caused by marker?

I draw a bunch of markers into my map, each marker is just some simple svg shapes. When I inspect it in react tools it appears to be rerendering the markers and hence the map when I mouse over the marker area. At the moment I only have a handful of markers but when its in production it will have siginficantly more and I am trying to understand the reason behind it rerendering.

Even if BasicMarker just renders a div with static text it is rerendering.

<GoogleMap center={ {lat: 31.299, lng: 120.5853} } zoom={8}> {value.map(c => <BasicMarker key={c.lat.toString() + c.lon.toString()} text={""} lat={c.lat} lng={c.lon} />)} </GoogleMap>

error when running hot-dev-server

Hi Istarkov,

Thanks very much for the work, the examples looks really nice so I might wanna use them but when running the example locally I get an error when running the hot-dev-server. Do you have an idea what this can be? See below for the trace.
I have tried both on OSX 10.10.5 and Ubuntu 12.04 LTS
Node version: 4.2.2 (and 5.0.0 on Ubuntu)
Npm version: 2.14.7 (and 3.3.6 on Ubuntu)

thanks

Joost

vagrant@precise64:~/google-map-react-examples$ npm run hot-dev-server

[email protected] hot-dev-server /home/vagrant/google-map-react-examples
npm run clean;webpack-dev-server --config webpack-hot-dev-server.config.js --hot --progress

[email protected] clean /home/vagrant/google-map-react-examples
rm -f ./build/stats.json;ls -d -1 ./build/public/* | xargs rm -rf;ls -d -1 ./build/prerender/* | xargs rm -rf;cp -r ./web/assets ./build/public/assets

ls: cannot access ./build/public/: No such file or directory
ls: cannot access ./build/prerender/
: No such file or directory
70% 1/1 build moduleshttp://0.0.0.0:3081/
webpack result is served from http://0.0.0.0:3081/w_assets/
content is served from /home/vagrant/google-map-react-examples
Hash: 26aaf3b87b2690f7529e
Version: webpack 1.12.4
Time: 5961ms
Asset Size Chunks Chunk Names
../../build/public/index.html 2.39 kB [emitted]
08e6c673479d6cf86a02b700926d9940.eot 2.12 kB [emitted]
8dfc7efca8c73a1148d47a91b8ed8cde.ttf 1.96 kB [emitted]
main.js 6.71 MB 0 [emitted] main
chunk {0} main.js (main) 2.88 MB [rendered]
[0] multi main 52 bytes {0} [built]
1-dev-server/client?http://0.0.0.0:3081 2.14 kB {0} [built]
[2] .//url/url.js 22.3 kB {0} [built]
[3] ./
/punycode/punycode.js 14.6 kB {0} [built]
4/buildin/module.js 251 bytes {0} [built]
[5] .//querystring/index.js 127 bytes {0} [built]
[6] ./
/querystring/decode.js 2.4 kB {0} [built]
[7] .//querystring/encode.js 2.09 kB {0} [built]
[8] ./
/socket.io-client/index.js 37 bytes {0} [built]
[9] .//socket.io-client/lib/index.js 1.5 kB {0} [built]
[10] ./
/socket.io-client/lib/url.js 1.53 kB {0} [built]
[11] .//parseuri/index.js 690 bytes {0} [built]
[12] ./
/socket.io-client//debug/debug.js 2.46 kB {0} [built]
[13] ./
/socket.io-parser/index.js 7.63 kB {0} [built]
[14] .//socket.io-parser//debug/debug.js 2.46 kB {0} [built]
[15] .//json3/lib/json3.js 40.1 kB {0} [built]
16/buildin/amd-options.js 43 bytes {0} [built]
[17] ./
/isarray/index.js 120 bytes {0} [built]
[18] .//component-emitter/index.js 3 kB {0} [built]
[19] ./
/socket.io-parser/binary.js 3.84 kB {0} [built]
[20] .//socket.io-parser/is-buffer.js 252 bytes {0} [built]
[21] ./
/socket.io-client/lib/manager.js 11 kB {0} [built]
[22] .//engine.io-client/index.js 38 bytes {0} [built]
[23] ./
/engine.io-client/lib/index.js 140 bytes {0} [built]
[24] .//engine.io-client/lib/socket.js 16.9 kB {0} [built]
[25] ./
/engine.io-client/lib/transports/index.js 1.08 kB {0} [built]
[26] .//engine.io-client/lib/xmlhttprequest.js 1.16 kB {0} [built]
[27] ./
/has-cors/index.js 458 bytes {0} [built]
[28] .//global/index.js 257 bytes {0} [built]
[29] ./
/engine.io-client/lib/transports/polling-xhr.js 7.92 kB {0} [built]
[30] .//engine.io-client/lib/transports/polling.js 4.85 kB {0} [built]
[31] ./
/engine.io-client/lib/transport.js 2.74 kB {0} [built]
[32] .//engine.io-parser/lib/browser.js 14.4 kB {0} [built]
[33] ./
/engine.io-parser/lib/keys.js 297 bytes {0} [built]
[34] .//has-binary/index.js 1.08 kB {0} [built]
[35] ./
/arraybuffer.slice/index.js 725 bytes {0} [built]
[36] .//base64-arraybuffer/lib/base64-arraybuffer.js 1.7 kB {0} [built]
[37] ./
/after/index.js 685 bytes {0} [built]
[38] .//utf8/utf8.js 6.38 kB {0} [built]
[39] ./
/blob/index.js 2.2 kB {0} [built]
[40] .//parseqs/index.js 708 bytes {0} [built]
[41] ./
/component-inherit/index.js 146 bytes {0} [built]
[42] .//engine.io-client//debug/browser.js 3.28 kB {0} [built]
[43] .//engine.io-client//debug/debug.js 4.1 kB {0} [built]
[44] .//engine.io-client//ms/index.js 2.02 kB {0} [built]
[45] .//engine.io-client/lib/transports/polling-jsonp.js 4.82 kB {0} [built]
[46] ./
/engine.io-client/lib/transports/websocket.js 4.57 kB {0} [built]
[47] .//ws/lib/browser.js 831 bytes {0} [built]
[48] ./
/indexof/index.js 199 bytes {0} [built]
[49] .//engine.io-client//parseuri/index.js 1.19 kB {0} [built]
[50] .//parsejson/index.js 842 bytes {0} [built]
[51] ./
/socket.io-client/lib/socket.js 6.99 kB {0} [built]
[52] .//to-array/index.js 216 bytes {0} [built]
[53] ./
/socket.io-client/lib/on.js 370 bytes {0} [built]
[54] .//component-bind/index.js 474 bytes {0} [built]
[55] ./
/object-component/index.js 1.18 kB {0} [built]
[56] .//backo2/index.js 1.4 kB {0} [built]
[57] ./
/strip-ansi/index.js 161 bytes {0} [built]
[58] .//ansi-regex/index.js 135 bytes {0} [built]
59/hot/dev-server.js 1.85 kB {0} [built]
60/hot/log-apply-result.js 813 bytes {0} [built]
[61] ./web/app.js 1.85 kB {0} [built]
[62] ./
/react-hot-api/modules/index.js 57 bytes {0} [built]
[63] .//react-hot-api/modules/makeMakeHot.js 1.07 kB {0} [built]
[64] ./
/react-hot-api/modules/makePatchReactClass.js 1.3 kB {0} [built]
[65] .//react-hot-api/modules/makeAssimilatePrototype.js 1.85 kB {0} [built]
[66] ./
/react-hot-api/modules/requestForceUpdateAll.js 888 bytes {0} [built]
[67] .//react-hot-api/modules/deepForceUpdate.js 1.23 kB {0} [built]
[68] ./
/react-hot-api/modules/bindAutoBindMethods.js 2.21 kB {0} [built]
[69] .//react-hot-api/modules/traverseRenderedChildren.js 536 bytes {0} [built]
[70] ./
/react-hot-loader/RootInstanceProvider.js 1.18 kB {0} [built]
[71] .//react-hot-loader/getRootInstancesFromReactMount.js 209 bytes {0} [built]
[227] ./web/polyfills.js 1.43 kB {0} [built]
[228] ./
/babel/polyfill.js 49 bytes {0} [built]
[229] .//babel-core/polyfill.js 44 bytes {0} [built]
[230] ./
/babel-core/lib/polyfill.js 203 bytes {0} [built]
[231] .//core-js/shim.js 4.31 kB {0} [built]
[232] ./
/core-js/modules/es5.js 10.2 kB {0} [built]
[233] .//core-js/modules/$.js 417 bytes {0} [built]
[234] ./
/core-js/modules/$.export.js 1.5 kB {0} [built]
[235] .//core-js/modules/$.global.js 322 bytes {0} [built]
[236] ./
/core-js/modules/$.core.js 117 bytes {0} [built]
[237] .//core-js/modules/$.hide.js 286 bytes {0} [built]
[238] ./
/core-js/modules/$.property-desc.js 183 bytes {0} [built]
[239] .//core-js/modules/$.descriptors.js 178 bytes {0} [built]
[240] ./
/core-js/modules/$.fails.js 99 bytes {0} [built]
[241] .//core-js/modules/$.redefine.js 898 bytes {0} [built]
[242] ./
/core-js/modules/$.uid.js 158 bytes {0} [built]
[243] .//core-js/modules/$.ctx.js 506 bytes {0} [built]
[244] ./
/core-js/modules/$.a-function.js 120 bytes {0} [built]
[245] .//core-js/modules/$.html.js 76 bytes {0} [built]
[246] ./
/core-js/modules/$.dom-create.js 288 bytes {0} [built]
[247] .//core-js/modules/$.is-object.js 107 bytes {0} [built]
[248] ./
/core-js/modules/$.has.js 117 bytes {0} [built]
[249] .//core-js/modules/$.cof.js 103 bytes {0} [built]
[250] ./
/core-js/modules/$.invoke.js 709 bytes {0} [built]
[251] .//core-js/modules/$.an-object.js 150 bytes {0} [built]
[252] ./
/core-js/modules/$.to-object.js 130 bytes {0} [built]
[253] .//core-js/modules/$.defined.js 157 bytes {0} [built]
[254] ./
/core-js/modules/$.to-iobject.js 215 bytes {0} [built]
[255] .//core-js/modules/$.iobject.js 237 bytes {0} [built]
[256] ./
/core-js/modules/$.to-integer.js 158 bytes {0} [built]
[257] .//core-js/modules/$.to-index.js 231 bytes {0} [built]
[258] ./
/core-js/modules/$.to-length.js 218 bytes {0} [built]
[259] .//core-js/modules/$.array-methods.js 1.52 kB {0} [built]
[260] ./
/core-js/modules/$.array-species-create.js 541 bytes {0} [built]
[261] .//core-js/modules/$.is-array.js 138 bytes {0} [built]
[262] ./
/core-js/modules/$.wks.js 257 bytes {0} [built]
[263] .//core-js/modules/$.shared.js 199 bytes {0} [built]
[264] ./
/core-js/modules/$.array-includes.js 786 bytes {0} [built]
[265] .//core-js/modules/es6.symbol.js 7.7 kB {0} [built]
[266] ./
/core-js/modules/$.set-to-string-tag.js 252 bytes {0} [built]
[267] .//core-js/modules/$.keyof.js 299 bytes {0} [built]
[268] ./
/core-js/modules/$.get-names.js 608 bytes {0} [built]
[269] .//core-js/modules/$.enum-keys.js 385 bytes {0} [built]
[270] ./
/core-js/modules/$.library.js 23 bytes {0} [built]
[271] .//core-js/modules/es6.object.assign.js 161 bytes {0} [built]
[272] ./
/core-js/modules/$.object-assign.js 1.09 kB {0} [built]
[273] .//core-js/modules/es6.object.is.js 138 bytes {0} [built]
[274] ./
/core-js/modules/$.same-value.js 142 bytes {0} [built]
[275] .//core-js/modules/es6.object.set-prototype-of.js 159 bytes {0} [built]
[276] ./
/core-js/modules/$.set-proto.js 914 bytes {0} [built]
[277] .//core-js/modules/es6.object.to-string.js 322 bytes {0} [built]
[278] ./
/core-js/modules/$.classof.js 565 bytes {0} [built]
[279] .//core-js/modules/es6.object.freeze.js 219 bytes {0} [built]
[280] ./
/core-js/modules/$.object-sap.js 371 bytes {0} [built]
[281] .//core-js/modules/es6.object.seal.js 208 bytes {0} [built]
[282] ./
/core-js/modules/es6.object.prevent-extensions.js 286 bytes {0} [built]
[283] .//core-js/modules/es6.object.is-frozen.js 241 bytes {0} [built]
[284] ./
/core-js/modules/es6.object.is-sealed.js 241 bytes {0} [built]
[285] .//core-js/modules/es6.object.is-extensible.js 265 bytes {0} [built]
[286] ./
/core-js/modules/es6.object.get-own-property-descriptor.js 304 bytes {0} [built]
[287] .//core-js/modules/es6.object.get-prototype-of.js 238 bytes {0} [built]
[288] ./
/core-js/modules/es6.object.keys.js 189 bytes {0} [built]
[289] .//core-js/modules/es6.object.get-own-property-names.js 145 bytes {0} [built]
[290] ./
/core-js/modules/es6.function.name.js 524 bytes {0} [built]
[291] .//core-js/modules/es6.function.has-instance.js 623 bytes {0} [built]
[292] ./
/core-js/modules/es6.number.constructor.js 2.63 kB {0} [built]
[293] .//core-js/modules/$.to-primitive.js 656 bytes {0} [built]
[294] ./
/core-js/modules/$.string-trim.js 941 bytes {0} [built]
[295] .//core-js/modules/es6.number.epsilon.js 123 bytes {0} [built]
[296] ./
/core-js/modules/es6.number.is-finite.js 247 bytes {0} [built]
[297] .//core-js/modules/es6.number.is-integer.js 144 bytes {0} [built]
[298] ./
/core-js/modules/$.is-integer.js 207 bytes {0} [built]
[299] .//core-js/modules/es6.number.is-nan.js 171 bytes {0} [built]
[300] ./
/core-js/modules/es6.number.is-safe-integer.js 300 bytes {0} [built]
[301] .//core-js/modules/es6.number.max-safe-integer.js 141 bytes {0} [built]
[302] ./
/core-js/modules/es6.number.min-safe-integer.js 143 bytes {0} [built]
[303] .//core-js/modules/es6.number.parse-float.js 132 bytes {0} [built]
[304] ./
/core-js/modules/es6.number.parse-int.js 133 bytes {0} [built]
[305] .//core-js/modules/es6.math.acosh.js 484 bytes {0} [built]
[306] ./
/core-js/modules/$.math-log1p.js 152 bytes {0} [built]
[307] .//core-js/modules/es6.math.asinh.js 229 bytes {0} [built]
[308] ./
/core-js/modules/es6.math.atanh.js 192 bytes {0} [built]
[309] .//core-js/modules/es6.math.cbrt.js 220 bytes {0} [built]
[310] ./
/core-js/modules/$.math-sign.js 131 bytes {0} [built]
[311] .//core-js/modules/es6.math.clz32.js 207 bytes {0} [built]
[312] ./
/core-js/modules/es6.math.cosh.js 189 bytes {0} [built]
[313] .//core-js/modules/es6.math.expm1.js 128 bytes {0} [built]
[314] ./
/core-js/modules/$.math-expm1.js 165 bytes {0} [built]
[315] .//core-js/modules/es6.math.fround.js 745 bytes {0} [built]
[316] ./
/core-js/modules/es6.math.hypot.js 678 bytes {0} [built]
[317] .//core-js/modules/es6.math.imul.js 534 bytes {0} [built]
[318] ./
/core-js/modules/es6.math.log10.js 165 bytes {0} [built]
[319] .//core-js/modules/es6.math.log1p.js 128 bytes {0} [built]
[320] ./
/core-js/modules/es6.math.log2.js 161 bytes {0} [built]
[321] .//core-js/modules/es6.math.sign.js 125 bytes {0} [built]
[322] ./
/core-js/modules/es6.math.sinh.js 457 bytes {0} [built]
[323] .//core-js/modules/es6.math.tanh.js 320 bytes {0} [built]
[324] ./
/core-js/modules/es6.math.trunc.js 180 bytes {0} [built]
[325] .//core-js/modules/es6.string.from-code-point.js 866 bytes {0} [built]
[326] ./
/core-js/modules/es6.string.raw.js 537 bytes {0} [built]
[327] .//core-js/modules/es6.string.trim.js 164 bytes {0} [built]
[328] ./
/core-js/modules/es6.string.iterator.js 525 bytes {0} [built]
[329] .//core-js/modules/$.string-at.js 613 bytes {0} [built]
[330] ./
/core-js/modules/$.iter-define.js 2.6 kB {0} [built]
[331] .//core-js/modules/$.iterators.js 20 bytes {0} [built]
[332] ./
/core-js/modules/$.iter-create.js 521 bytes {0} [built]
[333] .//core-js/modules/es6.string.code-point-at.js 252 bytes {0} [built]
[334] ./
/core-js/modules/es6.string.ends-with.js 855 bytes {0} [built]
[335] .//core-js/modules/$.string-context.js 311 bytes {0} [built]
[336] ./
/core-js/modules/$.is-regexp.js 295 bytes {0} [built]
[337] .//core-js/modules/$.fails-is-regexp.js 245 bytes {0} [built]
[338] ./
/core-js/modules/es6.string.includes.js 479 bytes {0} [built]
[339] .//core-js/modules/es6.string.repeat.js 157 bytes {0} [built]
[340] ./
/core-js/modules/$.string-repeat.js 368 bytes {0} [built]
[341] .//core-js/modules/es6.string.starts-with.js 784 bytes {0} [built]
[342] ./
/core-js/modules/es6.array.from.js 1.59 kB {0} [built]
[343] .//core-js/modules/$.iter-call.js 404 bytes {0} [built]
[344] ./
/core-js/modules/$.is-array-iter.js 279 bytes {0} [built]
[345] .//core-js/modules/core.get-iterator-method.js 297 bytes {0} [built]
[346] ./
/core-js/modules/$.iter-detect.js 568 bytes {0} [built]
[347] .//core-js/modules/es6.array.of.js 544 bytes {0} [built]
[348] ./
/core-js/modules/es6.array.iterator.js 1.14 kB {0} [built]
[349] .//core-js/modules/$.add-to-unscopables.js 294 bytes {0} [built]
[350] ./
/core-js/modules/$.iter-step.js 81 bytes {0} [built]
[351] .//core-js/modules/es6.array.species.js 36 bytes {0} [built]
[352] ./
/core-js/modules/$.set-species.js 366 bytes {0} [built]
[353] .//core-js/modules/es6.array.copy-within.js 237 bytes {0} [built]
[354] ./
/core-js/modules/$.array-copy-within.js 846 bytes {0} [built]
[355] .//core-js/modules/es6.array.fill.js 215 bytes {0} [built]
[356] ./
/core-js/modules/$.array-fill.js 630 bytes {0} [built]
[357] .//core-js/modules/es6.array.find.js 526 bytes {0} [built]
[358] ./
/core-js/modules/es6.array.find-index.js 546 bytes {0} [built]
[359] .//core-js/modules/es6.regexp.constructor.js 1.39 kB {0} [built]
[360] ./
/core-js/modules/$.flags.js 376 bytes {0} [built]
[361] .//core-js/modules/es6.regexp.flags.js 208 bytes {0} [built]
[362] ./
/core-js/modules/es6.regexp.match.js 364 bytes {0} [built]
[363] .//core-js/modules/$.fix-re-wks.js 912 bytes {0} [built]
[364] ./
/core-js/modules/es6.regexp.replace.js 480 bytes {0} [built]
[365] .//core-js/modules/es6.regexp.search.js 371 bytes {0} [built]
[366] ./
/core-js/modules/es6.regexp.split.js 424 bytes {0} [built]
[367] .//core-js/modules/es6.promise.js 9.21 kB {0} [built]
[368] ./
/core-js/modules/$.strict-new.js 152 bytes {0} [built]
[369] .//core-js/modules/$.for-of.js 891 bytes {0} [built]
[370] ./
/core-js/modules/$.species-constructor.js 343 bytes {0} [built]
[371] .//core-js/modules/$.microtask.js 1.73 kB {0} [built]
[372] ./
/core-js/modules/$.task.js 2.28 kB {0} [built]
[373] .//core-js/modules/$.redefine-all.js 153 bytes {0} [built]
[374] ./
/core-js/modules/es6.map.js 526 bytes {0} [built]
[375] .//core-js/modules/$.collection-strong.js 5.39 kB {0} [built]
[376] ./
/core-js/modules/$.collection.js 3.08 kB {0} [built]
[377] .//core-js/modules/es6.set.js 381 bytes {0} [built]
[378] ./
/core-js/modules/es6.weak-map.js 1.48 kB {0} [built]
[379] .//core-js/modules/$.collection-weak.js 2.72 kB {0} [built]
[380] ./
/core-js/modules/es6.weak-set.js 375 bytes {0} [built]
[381] .//core-js/modules/es6.reflect.apply.js 290 bytes {0} [built]
[382] ./
/core-js/modules/es6.reflect.construct.js 1.68 kB {0} [built]
[383] .//core-js/modules/es6.reflect.define-property.js 637 bytes {0} [built]
[384] ./
/core-js/modules/es6.reflect.delete-property.js 405 bytes {0} [built]
[385] .//core-js/modules/es6.reflect.enumerate.js 735 bytes {0} [built]
[386] ./
/core-js/modules/es6.reflect.get.js 727 bytes {0} [built]
[387] .//core-js/modules/es6.reflect.get-own-property-descriptor.js 349 bytes {0} [built]
[388] ./
/core-js/modules/es6.reflect.get-prototype-of.js 288 bytes {0} [built]
[389] .//core-js/modules/es6.reflect.has.js 196 bytes {0} [built]
[390] ./
/core-js/modules/es6.reflect.is-extensible.js 334 bytes {0} [built]
[391] .//core-js/modules/es6.reflect.own-keys.js 139 bytes {0} [built]
[392] ./
/core-js/modules/$.own-keys.js 378 bytes {0} [built]
[393] .//core-js/modules/es6.reflect.prevent-extensions.js 439 bytes {0} [built]
[394] ./
/core-js/modules/es6.reflect.set.js 1.07 kB {0} [built]
[395] .//core-js/modules/es6.reflect.set-prototype-of.js 378 bytes {0} [built]
[396] ./
/core-js/modules/es7.array.includes.js 385 bytes {0} [built]
[397] .//core-js/modules/es7.string.at.js 242 bytes {0} [built]
[398] ./
/core-js/modules/es7.string.pad-left.js 283 bytes {0} [built]
[399] .//core-js/modules/$.string-pad.js 773 bytes {0} [built]
[400] ./
/core-js/modules/es7.string.pad-right.js 286 bytes {0} [built]
[401] .//core-js/modules/es7.string.trim-left.js 203 bytes {0} [built]
[402] ./
/core-js/modules/es7.string.trim-right.js 205 bytes {0} [built]
[403] .//core-js/modules/es7.regexp.escape.js 234 bytes {0} [built]
[404] ./
/core-js/modules/$.replacer.js 227 bytes {0} [built]
[405] .//core-js/modules/es7.object.get-own-property-descriptors.js 720 bytes {0} [built]
[406] ./
/core-js/modules/es7.object.values.js 207 bytes {0} [built]
[407] .//core-js/modules/$.object-to-array.js 443 bytes {0} [built]
[408] ./
/core-js/modules/es7.object.entries.js 211 bytes {0} [built]
[409] .//core-js/modules/es7.map.to-json.js 176 bytes {0} [built]
[410] ./
/core-js/modules/$.collection-to-json.js 352 bytes {0} [built]
[411] .//core-js/modules/es7.set.to-json.js 176 bytes {0} [built]
[412] ./
/core-js/modules/js.array.statics.js 750 bytes {0} [built]
[413] .//core-js/modules/web.timers.js 706 bytes {0} [built]
[414] ./
/core-js/modules/$.partial.js 769 bytes {0} [built]
[415] .//core-js/modules/$.path.js 39 bytes {0} [built]
[416] ./
/core-js/modules/web.immediate.js 166 bytes {0} [built]
[417] .//core-js/modules/web.dom.iterable.js 580 bytes {0} [built]
[418] ./
/regenerator/runtime.js 21.4 kB {0} [built]
[419] .//process/browser.js 2.06 kB {0} [built]
[420] ./
/isomorphic-fetch/fetch-npm-browserify.js 233 bytes {0} [built]
[421] .//whatwg-fetch/fetch.js 9.93 kB {0} [built]
[422] ./
/babel-core/external-helpers.js 12.1 kB {0} [built]
[423] .//react-hot-loader/makeExportsHot.js 1.69 kB {0} [built]
[424] ./
/react-hot-loader/isReactClassish.js 801 bytes {0} [built]
[425] .//react-hot-loader/isReactElementish.js 288 bytes {0} [built]
[426] ./web/isomorphic_render.js 3.9 kB {0} [built]
[445] ./web/flux/render.js 2.83 kB {0} [built]
[446] ./
/redux/react.js 448 bytes {0} [built]
[447] .//babel-runtime/core-js/object/define-property.js 103 bytes {0} [built]
[448] ./
/core-js/library/fn/object/define-property.js 130 bytes {0} [built]
[449] .//core-js/library/modules/$.js 417 bytes {0} [built]
[450] ./
/babel-runtime/helpers/defaults.js 743 bytes {0} [built]
[451] .//babel-runtime/core-js/object/get-own-property-names.js 110 bytes {0} [built]
[452] ./
/core-js/library/fn/object/get-own-property-names.js 174 bytes {0} [built]
[453] .//core-js/library/modules/es6.object.get-own-property-names.js 145 bytes {0} [built]
[454] ./
/core-js/library/modules/$.object-sap.js 371 bytes {0} [built]
[455] .//core-js/library/modules/$.export.js 1.73 kB {0} [built]
[456] ./
/core-js/library/modules/$.global.js 322 bytes {0} [built]
[457] .//core-js/library/modules/$.core.js 117 bytes {0} [built]
[458] ./
/core-js/library/modules/$.ctx.js 506 bytes {0} [built]
[459] .//core-js/library/modules/$.a-function.js 120 bytes {0} [built]
[460] ./
/core-js/library/modules/$.fails.js 99 bytes {0} [built]
[461] .//core-js/library/modules/$.get-names.js 608 bytes {0} [built]
[462] ./
/core-js/library/modules/$.to-iobject.js 215 bytes {0} [built]
[463] .//core-js/library/modules/$.iobject.js 237 bytes {0} [built]
[464] ./
/core-js/library/modules/$.cof.js 103 bytes {0} [built]
[465] .//core-js/library/modules/$.defined.js 157 bytes {0} [built]
[466] ./
/babel-runtime/core-js/object/get-own-property-descriptor.js 115 bytes {0} [built]
[467] .//core-js/library/fn/object/get-own-property-descriptor.js 193 bytes {0} [built]
[468] ./
/core-js/library/modules/es6.object.get-own-property-descriptor.js 304 bytes {0} [built]
[469] .//babel-runtime/helpers/interop-require-wildcard.js 366 bytes {0} [built]
[470] ./
/redux/lib/react.js 828 bytes {0} [built]
[471] .//babel-runtime/helpers/interop-require-default.js 148 bytes {0} [built]
[472] ./
/redux/lib/components/createAll.js 1.34 kB {0} [built]
[473] .//redux/lib/components/createProvider.js 2.11 kB {0} [built]
[474] ./
/babel-runtime/helpers/inherits.js 780 bytes {0} [built]
[475] .//babel-runtime/core-js/object/create.js 94 bytes {0} [built]
[476] ./
/core-js/library/fn/object/create.js 103 bytes {0} [built]
[477] .//babel-runtime/core-js/object/set-prototype-of.js 104 bytes {0} [built]
[478] ./
/core-js/library/fn/object/set-prototype-of.js 125 bytes {0} [built]
[479] .//core-js/library/modules/es6.object.set-prototype-of.js 159 bytes {0} [built]
[480] ./
/core-js/library/modules/$.set-proto.js 914 bytes {0} [built]
[481] .//core-js/library/modules/$.is-object.js 107 bytes {0} [built]
[482] ./
/core-js/library/modules/$.an-object.js 150 bytes {0} [built]
[483] .//babel-runtime/helpers/get.js 1.01 kB {0} [built]
[484] ./
/babel-runtime/helpers/create-class.js 770 bytes {0} [built]
[485] .//babel-runtime/helpers/class-call-check.js 211 bytes {0} [built]
[486] ./
/redux/lib/components/createProvideDecorator.js 1.82 kB {0} [built]
[487] .//redux/lib/utils/getDisplayName.js 359 bytes {0} [built]
[488] ./
/redux/lib/components/createConnector.js 4.22 kB {0} [built]
[489] .//babel-runtime/helpers/extends.js 428 bytes {0} [built]
[490] ./
/babel-runtime/core-js/object/assign.js 94 bytes {0} [built]
[491] .//core-js/library/fn/object/assign.js 107 bytes {0} [built]
[492] ./
/core-js/library/modules/es6.object.assign.js 161 bytes {0} [built]
[493] .//core-js/library/modules/$.object-assign.js 1.09 kB {0} [built]
[494] ./
/core-js/library/modules/$.to-object.js 130 bytes {0} [built]
[495] .//lodash/utility/identity.js 355 bytes {0} [built]
[496] ./
/redux/lib/utils/shallowEqual.js 800 bytes {0} [built]
[497] .//babel-runtime/core-js/object/keys.js 92 bytes {0} [built]
[498] ./
/core-js/library/fn/object/keys.js 103 bytes {0} [built]
[499] .//core-js/library/modules/es6.object.keys.js 189 bytes {0} [built]
[500] ./
/lodash/lang/isPlainObject.js 2.23 kB {0} [built]
[501] .//lodash/internal/baseForIn.js 478 bytes {0} [built]
[502] ./
/lodash/internal/baseFor.js 608 bytes {0} [built]
[503] .//lodash/internal/createBaseFor.js 709 bytes {0} [built]
[504] ./
/lodash/internal/toObject.js 308 bytes {0} [built]
[505] .//lodash/lang/isObject.js 732 bytes {0} [built]
[506] ./
/lodash/object/keysIn.js 1.66 kB {0} [built]
[507] .//lodash/lang/isArguments.js 963 bytes {0} [built]
[508] ./
/lodash/internal/isArrayLike.js 372 bytes {0} [built]
[509] .//lodash/internal/getLength.js 440 bytes {0} [built]
[510] ./
/lodash/internal/baseProperty.js 351 bytes {0} [built]
[511] .//lodash/internal/isLength.js 644 bytes {0} [built]
[512] ./
/lodash/internal/isObjectLike.js 289 bytes {0} [built]
[513] .//lodash/lang/isArray.js 1.16 kB {0} [built]
[514] ./
/lodash/internal/getNative.js 456 bytes {0} [built]
[515] .//lodash/lang/isNative.js 1.29 kB {0} [built]
[516] ./
/lodash/lang/isFunction.js 1.06 kB {0} [built]
[517] .//lodash/internal/isIndex.js 778 bytes {0} [built]
[518] ./
/invariant/browser.js 1.54 kB {0} [built]
[519] .//redux/lib/components/createConnectDecorator.js 2.37 kB {0} [built]
[520] ./
/redux/lib/utils/shallowEqualScalar.js 1.06 kB {0} [built]
[521] ./web/flux/init_redux.js 5.34 kB {0} [built]
[522] .//lodash.pick/index.js 1.9 kB {0} [built]
[523] ./
/lodash._baseflatten/index.js 3.8 kB {0} [built]
[524] .//lodash.isarguments/index.js 3.08 kB {0} [built]
[525] ./
/lodash.isarray/index.js 5.16 kB {0} [built]
[526] .//lodash._bindcallback/index.js 1.91 kB {0} [built]
[527] ./
/lodash._pickbyarray/index.js 1.92 kB {0} [built]
[528] .//lodash._pickbycallback/index.js 1.39 kB {0} [built]
[529] ./
/lodash._basefor/index.js 2.55 kB {0} [built]
[530] .//lodash.keysin/index.js 3.84 kB {0} [built]
[531] ./
/lodash.restparam/index.js 2.32 kB {0} [built]
[532] .//lodash.isstring/index.js 1.51 kB {0} [built]
[533] ./
/lodash.isfunction/index.js 2.14 kB {0} [built]
[534] .//redux/lib/index.js 1.27 kB {0} [built]
[535] ./
/redux/lib/createRedux.js 982 bytes {0} [built]
[536] .//babel-runtime/helpers/bind.js 87 bytes {0} [built]
[537] ./
/redux/lib/Redux.js 2.48 kB {0} [built]
[538] .//redux/lib/createDispatcher.js 1.2 kB {0} [built]
[539] ./
/babel-runtime/helpers/to-consumable-array.js 333 bytes {0} [built]
[540] .//babel-runtime/core-js/array/from.js 91 bytes {0} [built]
[541] ./
/core-js/library/fn/array/from.js 147 bytes {0} [built]
[542] .//core-js/library/modules/es6.string.iterator.js 525 bytes {0} [built]
[543] ./
/core-js/library/modules/$.string-at.js 613 bytes {0} [built]
[544] .//core-js/library/modules/$.to-integer.js 158 bytes {0} [built]
[545] ./
/core-js/library/modules/$.iter-define.js 2.6 kB {0} [built]
[546] .//core-js/library/modules/$.library.js 22 bytes {0} [built]
[547] ./
/core-js/library/modules/$.redefine.js 37 bytes {0} [built]
[548] .//core-js/library/modules/$.hide.js 286 bytes {0} [built]
[549] ./
/core-js/library/modules/$.property-desc.js 183 bytes {0} [built]
[550] .//core-js/library/modules/$.descriptors.js 178 bytes {0} [built]
[551] ./
/core-js/library/modules/$.has.js 117 bytes {0} [built]
[552] .//core-js/library/modules/$.iterators.js 20 bytes {0} [built]
[553] ./
/core-js/library/modules/$.iter-create.js 521 bytes {0} [built]
[554] .//core-js/library/modules/$.set-to-string-tag.js 252 bytes {0} [built]
[555] ./
/core-js/library/modules/$.wks.js 257 bytes {0} [built]
[556] .//core-js/library/modules/$.shared.js 199 bytes {0} [built]
[557] ./
/core-js/library/modules/$.uid.js 158 bytes {0} [built]
[558] .//core-js/library/modules/es6.array.from.js 1.59 kB {0} [built]
[559] ./
/core-js/library/modules/$.iter-call.js 404 bytes {0} [built]
[560] .//core-js/library/modules/$.is-array-iter.js 279 bytes {0} [built]
[561] ./
/core-js/library/modules/$.to-length.js 218 bytes {0} [built]
[562] .//core-js/library/modules/core.get-iterator-method.js 297 bytes {0} [built]
[563] ./
/core-js/library/modules/$.classof.js 565 bytes {0} [built]
[564] .//core-js/library/modules/$.iter-detect.js 568 bytes {0} [built]
[565] ./
/redux/lib/utils/composeMiddleware.js 521 bytes {0} [built]
[566] .//redux/lib/utils/composeStores.js 754 bytes {0} [built]
[567] ./
/lodash/object/mapValues.js 1.61 kB {0} [built]
[568] .//lodash/internal/createObjectMapper.js 736 bytes {0} [built]
[569] ./
/lodash/internal/baseCallback.js 1.06 kB {0} [built]
[570] .//lodash/internal/baseMatches.js 824 bytes {0} [built]
[571] ./
/lodash/internal/baseIsMatch.js 1.46 kB {0} [built]
[572] .//lodash/internal/baseIsEqual.js 1.09 kB {0} [built]
[573] ./
/lodash/internal/baseIsEqualDeep.js 3.34 kB {0} [built]
[574] .//lodash/internal/equalArrays.js 1.8 kB {0} [built]
[575] ./
/lodash/internal/arraySome.js 591 bytes {0} [built]
[576] .//lodash/internal/equalByTag.js 1.58 kB {0} [built]
[577] ./
/lodash/internal/equalObjects.js 2.37 kB {0} [built]
[578] .//lodash/object/keys.js 1.3 kB {0} [built]
[579] ./
/lodash/internal/shimKeys.js 1.14 kB {0} [built]
[580] .//lodash/lang/isTypedArray.js 2.5 kB {0} [built]
[581] ./
/lodash/internal/getMatchData.js 523 bytes {0} [built]
[582] .//lodash/internal/isStrictComparable.js 420 bytes {0} [built]
[583] ./
/lodash/object/pairs.js 800 bytes {0} [built]
[584] .//lodash/internal/baseMatchesProperty.js 1.4 kB {0} [built]
[585] ./
/lodash/internal/baseGet.js 750 bytes {0} [built]
[586] .//lodash/internal/baseSlice.js 832 bytes {0} [built]
[587] ./
/lodash/internal/isKey.js 848 bytes {0} [built]
[588] .//lodash/array/last.js 377 bytes {0} [built]
[589] ./
/lodash/internal/toPath.js 806 bytes {0} [built]
[590] .//lodash/internal/baseToString.js 329 bytes {0} [built]
[591] ./
/lodash/internal/bindCallback.js 1.22 kB {0} [built]
[592] .//lodash/utility/property.js 799 bytes {0} [built]
[593] ./
/lodash/internal/basePropertyDeep.js 476 bytes {0} [built]
[594] .//lodash/internal/baseForOwn.js 475 bytes {0} [built]
[595] ./
/redux/lib/middleware/thunk.js 486 bytes {0} [built]
[596] .//redux/lib/utils/bindActionCreators.js 892 bytes {0} [built]
[597] ./web/flux/middlewares/multi_action_middleware.js 3 kB {0} [built]
[598] ./web/flux/consts/multi_action_types.js 1.47 kB {0} [built]
[599] ./web/flux/middlewares/call_fn_middleware.js 1.63 kB {0} [built]
[600] ./web/flux/middlewares/promise_middleware.js 2.36 kB {0} [built]
[601] ./web/flux/utils/pagejs/create_page_js_router.js 2.71 kB {0} [built]
[602] ./web/flux/utils/pagejs/create_page.js 15.9 kB {0} [built]
[603] ./
/path-to-regexp/index.js 9.35 kB {0} [built]
[604] ./web/flux/consts/link_action_types.js 1.47 kB {0} [built]
[605] ./web/flux/stores/index.js 1.91 kB {0} [built]
[606] ./web/flux/stores/router_store.js 2.46 kB {0} [built]
[607] ./web/flux/consts/router_action_types.js 1.48 kB {0} [built]
[608] .//immutable/dist/immutable.js 143 kB {0} [built] [prefetched]
[609] ./web/flux/stores/example_store.js 2.18 kB {0} [built]
[610] ./web/flux/consts/example_action_types.js 1.48 kB {0} [built]
[611] ./web/flux/stores/map_store.js 5.16 kB {0} [built]
[612] ./web/flux/consts/map_actions_types.js 2.08 kB {0} [built]
[613] ./web/flux/actions/user_routes.js 4.69 kB {0} [built]
[614] ./web/flux/consts/index.js 1.52 kB {0} [built]
[615] ./web/flux/consts/example_defs.js 4.14 kB {0} [built]
[616] ./web/flux/actions/example_actions.js 2.35 kB {0} [built]
[617] ./web/flux/actions/map_actions.js 5.46 kB {0} [built]
[618] ./
/async-decorators/index.js 494 bytes {0} [built]
[619] .//async-decorators/memoize.js 4.25 kB {0} [built]
[620] ./
/lodash/collection/sortBy.js 2.42 kB {0} [built]
[621] .//lodash/internal/baseMap.js 696 bytes {0} [built]
[622] ./
/lodash/internal/baseEach.js 489 bytes {0} [built]
[623] .//lodash/internal/createBaseEach.js 913 bytes {0} [built]
[624] ./
/lodash/internal/baseSortBy.js 543 bytes {0} [built]
[625] .//lodash/internal/compareAscending.js 548 bytes {0} [built]
[626] ./
/lodash/internal/baseCompareAscending.js 1.06 kB {0} [built]
[627] .//lodash/internal/isIterateeCall.js 906 bytes {0} [built]
[628] ./
/async-decorators/serialize.js 3.02 kB {0} [built]
[629] ./web/flux/components/examples/data/gen_markers_data.js 4.49 kB {0} [built]
[630] .//faker/vendor/mersenne.js 11 kB {0} [built]
[631] ./
/faker/index.js 2.73 kB {0} [built]
[632] .//faker/lib/name.js 2.7 kB {0} [built]
[633] ./
/faker/lib/address.js 3.29 kB {0} [built]
[634] .//faker/lib/helpers.js 5.59 kB {0} [built]
[635] ./
/faker/lib/phone_number.js 662 bytes {0} [built]
[636] .//faker/lib/internet.js 3.37 kB {0} [built]
[637] ./
/faker/vendor/password-generator.js 1.85 kB {0} [built]
[638] .//faker/vendor/user-agent.js 8.64 kB {0} [built]
[639] ./
/faker/lib/company.js 1.8 kB {0} [built]
[640] .//faker/lib/image.js 1.99 kB {0} [built]
[641] ./
/faker/lib/lorem.js 1.59 kB {0} [built]
[642] .//faker/lib/date.js 1.5 kB {0} [built]
[643] ./
/faker/lib/random.js 2.01 kB {0} [built]
[644] .//faker/lib/finance.js 2.38 kB {0} [built]
[645] ./
/faker/lib/hacker.js 1.83 kB {0} [built]
[646] .//faker/lib/locales.js 1.45 kB {0} [built]
[647] ./
/faker/lib/locales/de.js 73.3 kB {0} [built]
[648] .//faker/lib/locales/de_AT.js 53.7 kB {0} [built]
[649] ./
/faker/lib/locales/de_CH.js 1.08 kB {0} [built]
[650] .//faker/lib/locales/en.js 144 kB {0} [built]
[651] ./
/faker/lib/locales/en_AU.js 8.39 kB {0} [built]
[652] .//faker/lib/locales/en_BORK.js 1.59 kB {0} [built]
[653] ./
/faker/lib/locales/en_CA.js 1.26 kB {0} [built]
[654] .//faker/lib/locales/en_GB.js 2.32 kB {0} [built]
[655] ./
/faker/lib/locales/en_IND.js 14.5 kB {0} [built]
[656] .//faker/lib/locales/en_US.js 7.63 kB {0} [built]
[657] ./
/faker/lib/locales/en_au_ocker.js 4.05 kB {0} [built]
[658] .//faker/lib/locales/es.js 32.4 kB {0} [built]
[659] ./
/faker/lib/locales/fa.js 11.8 kB {0} [built]
[660] .//faker/lib/locales/fr.js 34.1 kB {0} [built]
[661] ./
/faker/lib/locales/ge.js 28.3 kB {0} [built]
[662] .//faker/lib/locales/it.js 22.8 kB {0} [built]
[663] ./
/faker/lib/locales/ja.js 2.32 kB {0} [built]
[664] .//faker/lib/locales/ko.js 3.88 kB {0} [built]
[665] ./
/faker/lib/locales/nb_NO.js 7.78 kB {0} [built]
[666] .//faker/lib/locales/nep.js 2.98 kB {0} [built]
[667] ./
/faker/lib/locales/nl.js 24.2 kB {0} [built]
[668] .//faker/lib/locales/pl.js 65.6 kB {0} [built]
[669] ./
/faker/lib/locales/pt_BR.js 11.5 kB {0} [built]
[670] .//faker/lib/locales/ru.js 23.5 kB {0} [built]
[671] ./
/faker/lib/locales/sk.js 76.6 kB {0} [built]
[672] .//faker/lib/locales/sv.js 10 kB {0} [built]
[673] ./
/faker/lib/locales/tr.js 32.6 kB {0} [built]
[674] .//faker/lib/locales/vi.js 6.04 kB {0} [built]
[675] ./
/faker/lib/locales/zh_CN.js 4.1 kB {0} [built]
[676] .//faker/lib/locales/zh_TW.js 3.38 kB {0} [built]
[677] ./web/flux/actions/router_actions.js 1.9 kB {0} [built]
[678] ./web/flux/components/main.jsx 7.63 kB {0} [built]
[679] ./
/react-pure-render/function.js 520 bytes {0} [built]
[680] .//react-pure-render/shallowEqual.js 719 bytes {0} [built]
[681] ./web/flux/components/examples/x_main/main_map_page.jsx 6.09 kB {0} [built]
[682] ./web/flux/components/examples/x_main/main_map_layout.jsx 4.56 kB {0} [built]
[683] ./web/flux/components/controls/pure_renderer/pure_renderer.jsx 2.62 kB {0} [built]
[684] ./web/flux/components/controls/fixed_table_examples/ice_table.jsx 5.67 kB {0} [built]
[685] ./web/flux/components/controls/fixed_table_examples/ice_table_int.jsx 8.26 kB {0} [built]
[686] ./
/react-controllables/lib/index.js 5.8 kB {0} [built]
[687] .//object-keys/index.js 3.24 kB {0} [built]
[688] ./
/object-keys/isArguments.js 422 bytes {0} [built]
[689] .//lodash.omit/index.js 2.31 kB {0} [built]
[690] ./
/lodash._arraymap/index.js 961 bytes {0} [built]
[691] .//lodash._basedifference/index.js 1.79 kB {0} [built]
[692] ./
/lodash._baseindexof/index.js 1.75 kB {0} [built]
[693] .//lodash._cacheindexof/index.js 1.66 kB {0} [built]
[694] ./
/lodash._createcache/index.js 2.43 kB {0} [built]
[695] .//lodash._getnative/index.js 3.87 kB {0} [built]
[696] ./
/lodash.mapvalues/index.js 3.06 kB {0} [built]
[697] .//lodash._basecallback/index.js 11.2 kB {0} [built]
[698] ./
/lodash._baseisequal/index.js 11.5 kB {0} [built]
[699] .//lodash.istypedarray/index.js 3.71 kB {0} [built]
[700] ./
/lodash.keys/index.js 6.62 kB {0} [built]
[701] .//lodash.pairs/index.js 2.11 kB {0} [built]
[702] ./web/flux/components/controls/fixed_table/ice_fixed_table.jsx 19.2 kB {0} [built]
[703] ./
/size-decorator/index.js 4.47 kB {0} [built]
[704] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/invariant.js 2.83 kB {0} [built]
[705] ./web/flux/utils/anim.js 2.23 kB {0} [built]
[706] ./web/flux/utils/easing.js 2.03 kB {0} [built]
[707] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/debounceCore.js 3.35 kB {0} [built]
[708] ./web/flux/components/controls/fixed_table/ice_fixed_table_holder.jsx 3.15 kB {0} [built]
[709] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/main.js 1.38 kB {0} [built]
[710] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/FixedDataTableRoot.js 2.4 kB {0} [built]
[711] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/ExecutionEnvironment.js 2.44 kB {0} [built]
[712] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/FixedDataTable.react.js 34.3 kB {0} [built]
[713] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/FixedDataTableHelper.js 4.59 kB {0} [built]
[714] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/Locale.js 1.84 kB {0} [built]
[715] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/React.js 1.69 kB {0} [built]
[716] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/FixedDataTableColumnGroup.react.js 3.2 kB {0} [built]
[717] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/FixedDataTableColumn.react.js 5.28 kB {0} [built]
[718] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/cloneWithProps.js 1.73 kB {0} [built]
[719] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/ReactComponentWithPureRenderMixin.js 1.78 kB {0} [built]
[720] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/ReactWheelHandler.js 3.82 kB {0} [built]
[721] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/normalizeWheel.js 7.94 kB {0} [built]
[722] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/UserAgent_DEPRECATED.js 9.03 kB {0} [built]
[723] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/isEventSupported.js 3.28 kB {0} [built]
[724] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/requestAnimationFramePolyfill.js 2.45 kB {0} [built]
[725] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/emptyFunction.js 2.4 kB {0} [built]
[726] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/nativeRequestAnimationFrame.js 1.95 kB {0} [built]
[727] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/Scrollbar.react.js 13.4 kB {0} [built]
[728] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/DOMMouseMoveTracker.js 6.12 kB {0} [built]
[729] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/EventListener.js 3.72 kB {0} [built]
[730] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/cancelAnimationFramePolyfill.js 2.11 kB {0} [built]
[731] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/Keys.js 1.96 kB {0} [built]
[732] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/cssVar.js 2.22 kB {0} [built]
[733] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/cx.js 3.05 kB {0} [built]
[734] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/translateDOMPositionXY.js 2.99 kB {0} [built]
[735] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/BrowserSupportCore.js 2.54 kB {0} [built]
[736] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/getVendorPrefixedName.js 2.97 kB {0} [built]
[737] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/camelize.js 2.04 kB {0} [built]
[738] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/FixedDataTableBufferedRows.react.js 6.21 kB {0} [built]
[739] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/FixedDataTableRowBuffer.js 7.05 kB {0} [built]
[740] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/IntegerBufferSet.js 7.82 kB {0} [built]
[741] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/Heap.js 4.25 kB {0} [built]
[742] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/clamp.js 1.93 kB {0} [built]
[743] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/FixedDataTableRow.react.js 7.89 kB {0} [built]
[744] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/FixedDataTableCellGroup.react.js 6.71 kB {0} [built]
[745] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/ImmutableObject.js 7.57 kB {0} [built]
[746] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/ImmutableValue.js 5.85 kB {0} [built]
[747] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/isNode.js 2.02 kB {0} [built]
[748] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/keyOf.js 2.43 kB {0} [built]
[749] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/mergeHelpers.js 5.08 kB {0} [built]
[750] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/keyMirror.js 2.51 kB {0} [built]
[751] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/FixedDataTableCell.react.js 6.8 kB {0} [built]
[752] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/joinClasses.js 2.25 kB {0} [built]
[753] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/FixedDataTableColumnResizeHandle.react.js 5.71 kB {0} [built]
[754] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/FixedDataTableScrollHelper.js 12.3 kB {0} [built]
[755] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/PrefixIntervalTree.js 6.63 kB {0} [built]
[756] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/FixedDataTableWidthHelper.js 5.14 kB {0} [built]
[757] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/internal/shallowEqual.js 2.4 kB {0} [built]
[758] ./web/flux/components/controls/fixed_table_examples/ice_table_renderer.js 7.05 kB {0} [built]
[759] .//classnames/index.js 988 bytes {0} [built]
[760] ./web/flux/components/examples/x_main/main_map_block.jsx 7.64 kB {0} [built]
[761] ./
/google-map-react/lib/index.js 336 bytes {0} [built]
[762] .//google-map-react/lib/google_map.js 29.5 kB {0} [built] [1 warning]
[763] ./
/google-map-react/lib/utils/react_version.js 351 bytes {0} [built]
[764] .//google-map-react/lib/marker_dispatcher.js 1.8 kB {0} [built]
[765] ./
/eventemitter3/index.js 7.17 kB {0} [built]
[766] .//google-map-react/lib/google_map_map.js 1.58 kB {0} [built]
[767] ./
/google-map-react/lib/google_map_markers.js 8.97 kB {0} [built]
[768] .//google-map-react/lib/google_map_markers_prerender.js 1.85 kB {0} [built]
[769] ./
/google-map-react/lib/utils/loaders/google_map_loader.js 1.3 kB {0} [built]
[770] .//scriptjs/dist/script.js 3.42 kB {0} [built]
[771] ./
/google-map-react/lib/utils/detect.js 1.18 kB {0} [built]
[772] .//google-map-react/lib/utils/geo.js 4.22 kB {0} [built]
[773] ./
/google-map-react/lib/utils/lib_geo/lat_lng.js 1.63 kB {0} [built]
[774] .//google-map-react/lib/utils/lib_geo/wrap.js 171 bytes {0} [built]
[775] ./
/point-geometry/index.js 3.03 kB {0} [built]
[776] .//google-map-react/lib/utils/lib_geo/transform.js 5.04 kB {0} [built]
[777] ./
/google-map-react/lib/utils/array_helper.js 368 bytes {0} [built]
[778] .//google-map-react/lib/utils/is_plain_object.js 841 bytes {0} [built]
[779] ./
/google-map-react/lib/utils/pick.js 364 bytes {0} [built]
[780] .//google-map-react/lib/utils/raf.js 399 bytes {0} [built]
[781] ./
/lodash/object/assign.js 1.62 kB {0} [built]
[782] .//lodash/internal/assignWith.js 943 bytes {0} [built]
[783] ./
/lodash/internal/baseAssign.js 516 bytes {0} [built]
[784] .//lodash/internal/baseCopy.js 545 bytes {0} [built]
[785] ./
/lodash/internal/createAssigner.js 1.29 kB {0} [built]
[786] .//lodash/function/restParam.js 1.9 kB {0} [built]
[787] ./
/lodash/lang/isNumber.js 1.06 kB {0} [built]
[788] ./web/flux/components/examples/x_main/marker_example.jsx 11.8 kB {0} [built]
[789] ./web/flux/components/examples/helpers/balloon_pos.js 3.21 kB {0} [built]
[790] ./web/flux/components/examples/helpers/marker_styles.js 2.79 kB {0} [built]
[791] ./web/flux/components/examples/helpers/calc_markers_visibility.js 3.88 kB {0} [built]
[792] ./web/flux/components/examples/constants/marker_descriptions.js 2.61 kB {0} [built]
[793] ./web/assets/icons/map_icons/map_icon_flag_orange.svg 2.12 kB {0} [built]
[794] ./web/assets/icons/map_icons/map_icon_std.svg 2.03 kB {0} [built]
[795] ./web/assets/icons/map_icons/map_icon_std_orange.svg 2.03 kB {0} [built]
[796] ./web/flux/components/examples/helpers/custom_distance.js 2.15 kB {0} [built]
[797] ./web/flux/components/examples/x_simple/simple_map_page.jsx 3.6 kB {0} [built]
[798] ./web/flux/components/examples/x_simple/my_great_place.jsx 2.74 kB {0} [built]
[799] ./web/flux/components/examples/x_simple/my_great_place_styles.js 1.93 kB {0} [built]
[800] ./web/flux/components/examples/x_options/options_map_page.jsx 4.46 kB {0} [built]
[801] ./web/flux/components/examples/x_options/my_great_place.jsx 2.74 kB {0} [built]
[802] ./web/flux/components/examples/x_options/my_great_place_styles.js 1.93 kB {0} [built]
[803] ./web/flux/components/examples/x_simple_hover/simple_hover_map_page.jsx 4.17 kB {0} [built]
[804] ./web/flux/components/examples/x_simple_hover/my_great_place_with_hover.jsx 3.17 kB {0} [built]
[805] ./web/flux/components/examples/x_simple_hover/my_great_place_with_hover_styles.js 2.14 kB {0} [built]
[806] ./web/flux/components/examples/x_distance_hover/distance_hover_map_page.jsx 5.53 kB {0} [built]
[807] ./web/flux/components/examples/x_distance_hover/my_great_place_with_stick.jsx 3.96 kB {0} [built]
[808] ./web/flux/components/examples/x_distance_hover/my_great_place_with_hover_styles.js 3.28 kB {0} [built]
[809] ./web/flux/components/examples/x_events/events_map_page.jsx 5.65 kB {0} [built]
[810] ./web/flux/components/examples/x_events/my_great_place_with_controllable_hover.jsx 3.53 kB {0} [built]
[811] ./web/flux/components/examples/x_events/my_great_place_with_controllable_hover_styles.js 2.15 kB {0} [built]
[812] ./web/flux/components/page.jsx 3.23 kB {0} [built]
[813] ./web/flux/components/header.jsx 5.01 kB {0} [built]
[814] ./web/flux/components/link.jsx 5.25 kB {0} [built]
[815] ./web/flux/utils/route_template.js 1.49 kB {0} [built]
[816] .//underscore/underscore.js 52.9 kB {0} [built]
[817] ./web/flux/actions/link_actions.js 2.6 kB {0} [built]
[818] ./web/flux/utils/text.js 2.58 kB {0} [built]
[819] ./web/flux/components/footer.jsx 3.51 kB {0} [built]
[820] ./web/flux/utils/serialize.js 2.42 kB {0} [built]
[821] ./
/fs-loader?name=../../build/public/[name].[ext]!./web/templates/index.html 74 bytes {0} [built]
[822] ./web/assets/fonts/flaticon.css 1.14 kB {0} [built]
[823] .//css-loader!./web/assets/fonts/flaticon.css 1.04 kB {0} [built]
[824] ./
/css-loader/cssToString.js 352 bytes {0} [built]
[825] ./web/assets/fonts/flaticon.eot 81 bytes {0} [built]
[826] ./web/assets/fonts/flaticon.woff 1.94 kB {0} [built]
[827] ./web/assets/fonts/flaticon.ttf 81 bytes {0} [built]
[828] ./web/assets/fonts/flaticon.svg 10.6 kB {0} [built]
[829] .//style-loader/addStyles.js 5.51 kB {0} [built]
[830] ./web/flux/components/controls/fixed_table/fixed-data-table-ice/dist/fixed-data-table.css 1.31 kB {0} [built]
[831] ./
/css-loader!./web/flux/components/controls/fixed_table/fixed-data-table-ice/dist/fixed-data-table.css 9.36 kB {0} [built]
[832] ./web/sass/app.sass 2.32 kB {0} [built] [1 error]
+ 173 hidden modules

WARNING in .//google-map-react/lib/google_map.js
Module not found: Error: Cannot resolve module 'react-dom' in /home/vagrant/google-map-react-examples/node_modules/google-map-react/lib
@ ./
/google-map-react/lib/google_map.js 82:15-35

ERROR in libsass bindings not found. Try reinstalling node-sass?
@ ./web/sass/app.sass 4:14-563 11:1-15:3 12:19-568
webpack: bundle is now VALID.

Hide businesses

Is there any way to hide the default places found on Google Maps?

Map Styling issue

// initially any map object has left top corner at lat lng coordinates
// it's on you to set object origin to 0,0 coordinates

Any explanation on how to set the position of the markers? I am confused by this...

Conditional marker rendering

When we try to use conditional rendering like:

<GoogleMap ...>
  {showMyMarker && <MyMarker lat={lat} lng={lng} />}
</GoogleMap>

the following exception will be thrown:
TypeError: Cannot read property 'props' of null

I suppose the problem is that the GoogleMap component assumes that all the children are valid react components, so when one of the child is null (as in the example) the error is shown.

Missing class properties transform

Hello guys, i am learning webdevelopment and React, right now i am strugling with implementing the React Map into the fullstack framework that i am workink with, it's a derivation of Meteor, called VulcanJs.org and i am having trouble with the syntax of the code.

I am keep geting Missing class properties transform using the code youy provide, reading on internet they say is a webpack config problem, but i have no ideea how to solve it.

So i wanted to ask what is the "normal" way of writing the code for youre React Map
?
image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.