import Ember from 'ember';
export default Ember.Component.extend({
didInsertElement: function() {
...
var map = new google.maps.Map(maptag, options);
this.set('map', map);
...
}
});
I know there is a plugin out there, but ive got no good feeling using modules instead of doing it on my own way. Especially if they are using an existing library in an “mapping” way. But maybe you would say that this is the better way like my approach.
Hi @emberigniter Thank you for your answer. My question is “what would you do?” or “do anybody know from experience that my DIY approach can result in problems?”.
I thing thats a good point and I will definitely check out some src’s later!
Thanks
Anyway: Do you have any experience in using gmaps api in your projects?
for ember-leaflet - the basic case is simple and is only 10 lines of code, as soon as you want to do anything more advanced like adding in popups etc bound to ember data it becomes a lot more complex