Conversation
|
Thank you for a pull-request! The idea looks good, but it needs better implementation. First of all, how are you going to detect map instance if you have more than one map on some page? I think it would be better to do it by attributes: <yandex-map ymap-balloonopen="doSomething($event)"></yandex-map>It will be very similar how input directive in core angular works. <input type="text" ng=model="myModel" ng-change="doSomething($event)">You can see how it is implemented in angular sources and do it here in the similar fashion |
|
Good point! Working on it, will publish soon. |
|
Hey, Boris! I've updated the event listeners mechanism, now it works as you recommended: <yandex-map ymap-balloonopen="doSomething($event)"></yandex-map>To achieve this functionalty i've added new constant "EVENTS" and configurable parameter "eventPrefixInDirective" in ymapsConfig constant. I've added description in readme as well. |
|
Thank you, good job! But Also, you should write few unit tests that And feel free to ask me some questions if you need. |
|
Got it! Thanks for the reasonable feedback. Will update soon. |
Yandex maps service emits events that you may want to listen in you controllers/directives (like when user clicks on a balloon for example). This functionality is enabled now, you can listen any event you want by adding a list of them in new "events" attribute. Event Docs.