Angular-google-maps: AgmCircle dragStart event not working

Created on 7 Nov 2018  路  4Comments  路  Source: SebastianM/angular-google-maps

Issue description
AgmCircle dragStart event not working

Steps to reproduce and a minimal demo of the problem
Create an amg-circle and start draging.

Current behavior
Not fires. Only dragEnd fires

Expected/desired behavior
Should fire

angular2 & angular-google-maps version

Other information

All 4 comments

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

Nice, just close issues, dont solve them! ahahahah

Hey... @vguleaev , there was a minor issue with the events.set('dragStart', this.dragStart); where the event set needs to be all lowercase. I made a pull requested for it https://github.com/SebastianM/angular-google-maps/pull/1618

. If you want to change this in your current project before a new release you can edit it in your /node_modules/@agm/core/directives/circle.js
and change the

events.set('dragStart', this.dragStart); line 140
to
events.set('dragstart', this.dragStart);

fixed

Was this page helpful?
0 / 5 - 0 ratings

Related issues

gizm0bill picture gizm0bill  路  4Comments

gnujeremie picture gnujeremie  路  3Comments

marcelinobadin picture marcelinobadin  路  3Comments

DeveloperAdd007 picture DeveloperAdd007  路  3Comments

shedar picture shedar  路  4Comments