You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 23, 2025. It is now read-only.
I work with version 0.8.0 and found that in google-map-marker.ts it have a wrong spelling detect for longtitude value.
ngOnChanges(changes: {[key: string]: SimpleChange}) {
...
if (changes['latitude'] || changes['logitude']) {
this._markerManager.updateMarkerPosition(this);
}
It will block the map marker change when user change only the longtitude value.
Could you please fix it?