Google Map For Meteor
I install 'meteor add dburles:google-maps' in Meteor. I added this code to the React Component, ... import { GoogleMaps } from 'meteor/dburles:google-maps'; ... export default clas
Solution 1:
That's because google hasn't been loaded yet. Make sure to check GoogleMaps.loaded()
before you hit create.
The author, David Burles, wrote a nice example using the library with react, which should be helpful. It uses createContainer instead of TrackerReact but should get you on the right track.
Post a Comment for "Google Map For Meteor"